⇒ 로그인 이전
⇒ 로그인 이후
⇒ cssstyle.css
#inputBox input {
background: #9a74e8;
border: 2px solid #f6f6f6;
color: #f6f6f6;
font-family: 'BMYEONSUNG';
font-size: 25px;
width: 300px;
height: 30px;
border-radius: 60px;
outline: none;
text-align: center;
}
⇒ css/style.css
#divGreeting { /* ID TEXT 가운데 정렬 */
position: absolute;
width: 100px;
height: 40px;
margin-left: 70px;
}
#greeting { /* ID TEXT 가운데 정렬 */
position: absolute;
line-height: 40px;
}
⇒ css/sytle.css
#todo-form input { /* 입력창 */
background: transparent;
position: relative;
width: 300px;
left: 55px;
color: #f6f6f6;
font-family: 'BMHANNAPro';
font-size: 25px;
border: 2px solid #f6f6f6;
border-radius: 40px;
text-align: center;
}
<!-- 우측 => 깃허브 / VELOG / 노션 등 프로필 -->
<div class="right">
<div id="rightTitle">
<h1>About Irish</h1>
</div>
<div id="rightOne">
<h1>rightOne</h1>
</div>
<div id="rightTwo">
<h1>rightTwo</h1>
</div>
<div id="rightWeather">
<h1>rightWeather</h1>
</div>
</div>
/***** 시작 - div.Right 세부 *****/
#rightTitle{ /* 우측 - 타이틀 */
width: 450px;
height: 50px;
line-height: 25px;
text-align: center;
}
#rightOne{ /* 우측 1번째 - Velog */
width: 450px;
height: 220px;
}
#rightTwo{ /* 우측 2번째 - Github */
width: 450px;
height: 220px;
}
#rightWeather{ /* 우측 3번째 - 아마 Weather 부분을 여기로 옮길 듯*/
}
/***** 종료 - div.Right 세부 *****/