Page 74 - MDP2020-2
P. 74
| 인천전자마이스터고등학교 ·············································································································
68
-style1
body {
font-family:"NanumBarunGothic";
/* 폰트를 나눔바른고딕으로 설정 */
background-color: #fff;
/* 흰색 배경 */
}
.container {
width: 100%;
/* 너비 100% */
margin: 0 auto;
/* 블록 사이의 거리 세로 0px 가로 auto */
text-align: center;
/* 글자 중앙 정렬 */
}
.button{
border-radius: 4px;
/* 라운딩 */
background-color: #f4511e;
/* 주황색 배경 */
border: none;
/* 테두리 없음 */
color: #ffffff;
/* 폰트는 흰색 */
text-align: center;
/* 글자 중앙 정렬 */
font-size: 28px;
/* 폰트 크기 28px */
padding: 20px;
/* 상하좌우 20px */
width: 200px;
/* 너비 200px */
transition: all 0.5s;
cursor: pointer;
/* 버튼에 마우스 올라가면 포인터로 */
margin: 15px;
/* 외부와의 간격 5px */
}
.button span{