- 순찰/점검 기능 개선 (zone-detail 페이지 추가) - 출근/근태 시스템 개선 (연차 조회, 근무현황) - 작업분석 대분류 그룹화 및 마이그레이션 스크립트 - 모바일 네비게이션 UI 추가 - NAS 배포 도구 및 문서 추가 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
54 lines
893 B
CSS
54 lines
893 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: url('/img/login-bg.jpeg') no-repeat center center fixed;
|
|
background-size: cover;
|
|
font-family: 'Malgun Gothic', sans-serif;
|
|
}
|
|
|
|
.login-container {
|
|
background: rgba(0, 0, 0, 0.65);
|
|
width: 400px;
|
|
padding: 40px;
|
|
margin: 100px auto;
|
|
border-radius: 12px;
|
|
text-align: center;
|
|
color: white;
|
|
box-shadow: 0 0 20px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
.logo {
|
|
width: 200px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
input {
|
|
display: block;
|
|
width: 100%;
|
|
margin: 15px 0;
|
|
padding: 12px;
|
|
font-size: 1rem;
|
|
border-radius: 6px;
|
|
border: none;
|
|
}
|
|
|
|
button {
|
|
padding: 12px 20px;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
border: none;
|
|
background-color: #1976d2;
|
|
color: white;
|
|
border-radius: 6px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #1565c0;
|
|
}
|
|
|
|
.error-message {
|
|
margin-top: 10px;
|
|
color: #ff6b6b;
|
|
font-weight: bold;
|
|
} |