⇒ 글자 가운데 정렬(세로)
⇒ 수정 전 화면
<!-- 로그인 및 로그아웃 관련 DIV -->
<div id="login">
<!-- 로그인 폼 -->
<form action id="login-form">
<div id="inputBox">
<input
required
maxlength="15"
type="text"
placeholder="아이디를 입력하세요"
/>
</div>
<div id="loginBox">
<input type="submit" value="Log In" />
</div>
</form>
<!-- <h1 id="greeting" class="hidden"></h1> -->
<!-- 로그아웃 폼 -->
<form action id="logoutBtn" class="hidden">
<div>
<h1 id="greeting" class="hidden"></h1>
</div>
<div id="logoutBox">
<input type="submit" value="Log Out" />
</div>
</form>
/***** 시작 - 로그인 및 로그아웃 *****/
#greeting { /* ID TEXT 가운데 정렬 */
text-align: center;
}
#login p {
margin-top: 5px;
margin-bottom: 0;
margin-left: 85%;
color: #a0a0a0;
font-family: 'BMYEONSUNG';
font-size: 20px;
}
#login p:hover {
text-decoration: underline;
cursor: pointer;
}
#inputBox {
justify-content: center;
height: 30px;
margin-bottom: 0;
margin-top: 20px;
margin-left: 15%;
margin-right: 15%;
}
#inputBox input {
background: transparent;
border: 2px solid #f6f6f6;
color: #f6f6f6;
font-family: 'BMYEONSUNG';
font-size: 25px;
width: 200px;
height: 30px;
border-radius: 60px;
padding-left: 20px;
padding-top: 5px;
outline: none;
}
#inputBox input:hover {
border: 2px solid #c5acf8;
}
#inputBox input::placeholder {
color: #f6f6f6;
font-family: 'BMYEONSUNG';
}
#loginBox, #logoutBox {
height: 30px;
margin-top: 15px;
margin-left: 70%;
margin-bottom: 0px;
margin-right: 13%;
}
#loginBox input, #logoutBox input {
height: 100%;
width: 100%;
border-radius: 40px;
background-color: #9a74e8;
font-family: 'BMYEONSUNG';
font-size: 20px;
border: 0px;
}
#loginBox input:hover, #logoutBox input:hover {
cursor: pointer;
color: #f6f6f6;
background-color: #c5acf8;
}
/***** 종료 - 로그인 및 로그아웃 *****/
<!-- 최상단 => 시간 API && 환영 문구 -->
<div class="top">
<!-- 시간 API -->
<div id="topClock">
<h2 id="clock" style="color:orangered">00:00:00</h2>
</div>
<div id="topWelcome">
<h1 id="welcome">Welcome! This is Irish's Web Page.</h1>
</div>
</div>
/* 시작 - top Div에 있는 텍스트 관련 설정 */
#topWelcome {
position: absolute;
width: 600px;
height: 80px;
margin-left: 600px;
line-height: 40px; /* 글자 세로 정렬 - height의 절반 */
}
#topClock {
position: absolute;
width: 600px;
height: 80px;
margin-left: 10px;
line-height: 40px; /* 글자 세로 정렬 - height의 절반 */
}
/* 종료 - top Div에 있는 텍스트 관련 설정 */