-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
55 lines (51 loc) · 1.72 KB
/
popup.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
<!DOCTYPE html>
<html lang="ko">
<head>
<script src="./js/githubCalendar.js"></script>
<link rel="stylesheet" href="./css/githubCalendar.css">
<link rel="stylesheet" href="./css/popup.css">
<style>
:root {
--bg: #d3fdd1;
--color-calendar-graph-day-bg: #dddbdb;
--color-calendar-graph-day-L1-bg: #39dd34;
--color-calendar-graph-day-L2-bg: #45a045;
--color-calendar-graph-day-L3-bg: #047526;
--color-calendar-graph-day-L4-bg: #0a4208;
}
</style>
</head>
<body>
<!-- ChcekCommit 헤더 -->
<div id="top">
<div id="logo">CheckCommit</div>
<button id="logout" class="none">Logout</button>
</div>
<!-- 로그인 부분 -->
<div id="part1">
<form id="before-login">
<input id="input-id" type="text" placeholder="Enter your github ID">
<div class="hidden" id="warning">Check your ID</div>
<button id="login-button" type="submit">Login</button>
</form>
</div>
<!-- 메인 부분 -->
<div id="part2" class="none">
<div id="after-login">
<div id="comment">COMMIT NOW</div>
<div class="calendar">
Loading data ...
</div>
</div>
</div>
<!-- 색상 선택 부분 -->
<ul id="color-list">
<li id="1"></li>
<li id="2"></li>
<li id="3"></li>
<li id="4"></li>
<li id="5"></li>
</ul>
<script type="module" src="./js/popup.js"></script>
</body>
</html>