-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalendar.html
More file actions
200 lines (181 loc) · 6.96 KB
/
Copy pathcalendar.html
File metadata and controls
200 lines (181 loc) · 6.96 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Midnight Orbit - 감정 캘린더</title>
<style>
body {
margin: 0;
padding: 0;
background-image: url('image.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #0d0d1a;
color: white;
font-family: '맑은 고딕', sans-serif;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 50px;
background-color: rgba(5, 5, 10, 0.8);
backdrop-filter: blur(5px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
position: fixed;
width: 100%;
top: 0; left: 0;
box-sizing: border-box;
z-index: 100;
}
.logo {
font-size: 24px;
font-weight: bold;
}
.logo span {
color: #8A2BE2;
}
nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
nav li {
margin-left: 30px;
}
nav a {
color: #ccc;
text-decoration: none;
}
nav a:hover, nav li.active a {
color: white;
font-weight: bold;
}
.calendar-container {
max-width: 900px;
margin: 150px auto 100px auto;
padding: 40px;
background-color: rgba(21, 21, 37, 0.85);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
}
.calendar-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px; }
.calendar-header h2 {
margin: 0;
font-size: 28px;
}
.btn-nav {
background: none;
border: 1px solid rgba(255,255,255,0.3);
color: white;
padding: 8px 15px;
border-radius: 5px;
cursor: pointer; }
.btn-nav:hover {
background: #8A2BE2;
border-color: #8A2BE2;
}
.calendar-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 10px;
text-align: center; }
.day-name { font-weight: bold;
color: #8A2BE2;
padding-bottom: 10px;
border-bottom: 1px solid rgba(255,255,255,0.1); }
.day-cell {
min-height: 90px;
background: rgba(0,0,0,0.3);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px;
padding: 8px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
}
.day-num {
font-size: 14px;
color: #aaa;
}
.day-cell .emo {
font-size: 22px;
align-self: center;
margin-bottom: 5px;
}
.cell-happy { border-color: #FFD700; background: rgba(255, 215, 0, 0.05); }
.cell-sad { border-color: #6495ED; background: rgba(100, 149, 237, 0.05); }
.cell-stress { border-color: #FF6347; background: rgba(255, 99, 71, 0.05); }
.cell-calm { border-color: #90EE90; background: rgba(144, 238, 144, 0.05); }
footer {
text-align: center;
padding: 30px;
background-color: #05050a;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 14px; color: #777;
}
</style>
</head>
<body>
<header>
<div class="logo"><a href="index.html" style="color:inherit; text-decoration:none;">Midnight <span>Orbit</span></a></div>
<nav>
<ul>
<li><a href="today.html">오늘의 하루</a></li>
<li class="active"><a href="calendar.html">감정 캘린더</a></li>
<li><a href="todolist.html">to do list</a></li>
<li><a href="archive.html">기억 보관소</a></li>
<li><a href="signal.html">내일 신호</a></li>
</ul>
</nav>
</header>
<div class="calendar-container">
<div class="calendar-header">
<button class="btn-nav">◀ 이전 달</button>
<h2>2026년 6월</h2>
<button class="btn-nav">다음 달 ▶</button>
</div>
<div class="calendar-grid">
<div class="day-name">일</div><div class="day-name">월</div><div class="day-name">화</div>
<div class="day-name">수</div><div class="day-name">목</div><div class="day-name">금</div><div class="day-name">토</div>
<div class="day-cell"><span class="day-num">31</span></div>
<div class="day-cell cell-calm"><span class="day-num">1</span><span class="emo">😌</span></div>
<div class="day-cell cell-happy"><span class="day-num">2</span><span class="emo">😄</span></div>
<div class="day-cell"><span class="day-num">3</span></div>
<div class="day-cell"><span class="day-num">4</span></div>
<div class="day-cell"><span class="day-num">5</span></div>
<div class="day-cell"><span class="day-num">6</span></div>
<div class="day-cell"><span class="day-num">7</span></div>
<div class="day-cell cell-stress"><span class="day-num">8</span><span class="emo">😵</span></div>
<div class="day-cell"><span class="day-num">9</span></div>
<div class="day-cell cell-sad"><span class="day-num">10</span><span class="emo">😢</span></div>
<div class="day-cell"><span class="day-num">11</span></div>
<div class="day-cell"><span class="day-num">12</span></div>
<div class="day-cell"><span class="day-num">13</span></div>
<div class="day-cell"><span class="day-num">14</span></div><div class="day-cell"><span class="day-num">15</span></div>
<div class="day-cell"><span class="day-num">16</span></div><div class="day-cell"><span class="day-num">17</span></div>
<div class="day-cell"><span class="day-num">18</span></div><div class="day-cell"><span class="day-num">19</span></div>
<div class="day-cell"><span class="day-num">20</span></div><div class="day-cell"><span class="day-num">21</span></div>
<div class="day-cell"><span class="day-num">22</span></div><div class="day-cell"><span class="day-num">23</span></div>
<div class="day-cell"><span class="day-num">24</span></div><div class="day-cell"><span class="day-num">25</span></div>
<div class="day-cell"><span class="day-num">26</span></div><div class="day-cell"><span class="day-num">27</span></div>
<div class="day-cell"><span class="day-num">28</span></div><div class="day-cell"><span class="day-num">29</span></div>
<div class="day-cell"><span class="day-num">30</span></div>
</div>
</div>
<footer>
<p>202533761 | 손혜린</p>
<p>© 2026 Midnight Orbit. All rights reserved.</p>
</footer>
</body>
</html>