142 lines
3.8 KiB
HTML
142 lines
3.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Project Master Portal</title>
|
|
<link rel="stylesheet" as="style" crossorigin
|
|
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css" />
|
|
<link rel="stylesheet" href="style/style.css">
|
|
<style>
|
|
body {
|
|
display: block;
|
|
/* style.css의 flex: min-height 100vh 해제 */
|
|
background-color: var(--hover-bg);
|
|
}
|
|
|
|
.portal-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: calc(100vh - 36px);
|
|
margin-top: 36px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.portal-header {
|
|
text-align: center;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.portal-header h1 {
|
|
font-size: 28px;
|
|
color: var(--primary-color);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.portal-header p {
|
|
color: var(--text-sub);
|
|
font-size: 15px;
|
|
}
|
|
|
|
.button-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 30px;
|
|
width: 100%;
|
|
max-width: 800px;
|
|
}
|
|
|
|
.portal-card {
|
|
background: white;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 12px;
|
|
padding: 40px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
color: var(--text-main);
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.portal-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
|
|
border-color: var(--primary-color);
|
|
}
|
|
|
|
.portal-card .icon {
|
|
width: 64px;
|
|
height: 64px;
|
|
background-color: var(--hover-bg);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 32px;
|
|
color: var(--primary-color);
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.portal-card:hover .icon {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
.portal-card h2 {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.portal-card p {
|
|
color: var(--text-sub);
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.button-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<nav class="topbar">
|
|
<div class="topbar-header">
|
|
<a href="/"><h2>Project Master Test</h2></a>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="portal-container">
|
|
<div class="portal-header">
|
|
<h1>Project Master 테스트</h1>
|
|
<p>원하시는 서비스에 접속하려면 아래 버튼을 클릭하세요.</p>
|
|
</div>
|
|
|
|
<div class="button-grid">
|
|
<a href="/dashboard" class="portal-card">
|
|
<div class="icon">📊</div>
|
|
<h2>관리자 페이지 테스트</h2>
|
|
<p>관리자 페이지 테스트 입니다.</p>
|
|
</a>
|
|
|
|
<a href="/mailTest" class="portal-card">
|
|
<div class="icon">✉️</div>
|
|
<h2>메일 테스트</h2>
|
|
<p>메일 기능 테스트 페이지입니다.</p>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |