-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (118 loc) · 4.62 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Momentum App</title>
<link rel="stylesheet" href="./css/style.css" id="css" />
<script src="https://kit.fontawesome.com/c1651245ed.js" crossorigin="anonymous"></script>
<script src="./js/greeting.js" defer></script>
<script src="./js/background.js" defer></script>
<script src="./js/time.js" defer></script>
<script src="./js/weather.js" defer></script>
<script src="./js/queto.js" defer></script>
<script src="./js/todo.js" defer></script>
<script src="./js/work.js" defer></script>
<script src="./js/timer.js" defer></script>
</head>
<body>
<div class="cover">
<header class="header">
<div class="header__container">
<div class="weather">
<div class="info">
<span></span>
<span></span>
</div>
</div>
<div class="time">
<div class="time__now-text">
<span></span>
</div>
</div>
</div>
</header>
<main class="main">
<section class="main-container">
<div class="work">
<div class="greeting">
<form class="greeting-frm">
<input type="text" class="greeting__input" placeholder="이름을 입력해주세요." maxlength="10" />
</form>
<div class="greeting__content hide">
<span class="greeting__text">안녕하세요</span>
<span class="greeting__name"></span>
</div>
<div class="edit-name">
<i class="fa-solid fa-ellipsis hidden" id="edit-name__icon"></i>
<div class="bubble hidden">
<span class="edit-name__text"> 이름 변경하기 </span>
</div>
</div>
</div>
<span class="work__ask">어떤 일에 집중하실건가요?</span>
<form class="work-frm">
<input class="work__what" maxlength="10" />
</form>
<div class="work-show hidden">
<i class="fa-regular fa-square fa-sm"></i>
<i class="fa-regular fa-square-check fa-sm hidden"></i>
<span class="work-show__doing"></span>
<div class="edit-work hidden">
<i class="fa-solid fa-ellipsis fa-lg"> </i>
<div class="bubble hidden">
<span class="edit-name__text edit-name__text--hide"> 주요 계획 변경하기 </span>
</div>
</div>
<div class="work-item work-item--hide">
<div class="work-item__edit"></div>
<div class="work-item__delete"></div>
</div>
</div>
</div>
<div class="timer">
<div class="timer__container">
<span class="timer__bigTime timer__bigTime--stop"></span>
<span class="timer__smallTime"></span>
</div>
<div class="timer__btns">
<button class="timer__reset-btn" data-type="reset">재설정</button>
<button class="timer__start-btn" data-type="start">시작</button>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__container">
<div class="queto">
<span class="queto__text"></span><br />
<span class="queto__author"></span>
</div>
<div class="todo">
<span>할 일</span>
</div>
<div class="todo-container hide">
<div class="todo-top">
<div class="todo-top__todo" data-type="today">오늘 할 일</div>
<div class="todo-top__done hide" data-type="done">끝낸 일</div>
<i class="fa-solid fa-angle-down" id="todo-type-show">
<ul class="todo-type hide">
<li class="todo-type__list active">오늘 할 일</li>
<li class="todo-type__list">끝낸 일</li>
</ul>
</i>
</div>
<div class="todo-body">
<ul class="todo__list"></ul>
<div class="todo__new">이 곳을 눌러 할 일을 메모하세요.</div>
<form class="todo-frm hidden">
<input type="text" class="todo__content" placeholder="할 일" maxlength="10" />
</form>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>