89 lines
1.4 KiB
CSS
89 lines
1.4 KiB
CSS
body {
|
|
margin: 0;
|
|
font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
|
|
background-color: #1e1e23;
|
|
color: #ffffff;
|
|
width: 280px;
|
|
}
|
|
|
|
.container {
|
|
padding: 16px;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 16px;
|
|
border-bottom: 1px solid #333333;
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 16px;
|
|
margin: 0;
|
|
color: #00ffa3; /* 치지직 브랜드 컬러 느낌 */
|
|
}
|
|
|
|
.badge {
|
|
background-color: #00ffa3;
|
|
color: #000000;
|
|
padding: 4px 8px;
|
|
border-radius: 12px;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.content p {
|
|
font-size: 13px;
|
|
line-height: 1.5;
|
|
color: #b0b8c1;
|
|
margin-top: 0;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.status-box {
|
|
background-color: #2a2a32;
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.status-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 12px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.status-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.label {
|
|
color: #8b95a1;
|
|
}
|
|
|
|
.value.success {
|
|
color: #00ffa3;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 16px;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer a {
|
|
display: block;
|
|
background-color: #333333;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
padding: 10px;
|
|
border-radius: 6px;
|
|
font-size: 13px;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.footer a:hover {
|
|
background-color: #4a4a4a;
|
|
} |