48 lines
641 B
SCSS
48 lines
641 B
SCSS
|
@charset 'utf-8';
|
||
|
|
||
|
html {
|
||
|
height: 100%;
|
||
|
overflow-y: scroll;
|
||
|
}
|
||
|
body {
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
color: #333;
|
||
|
font-family: '나눔고딕', Malgun Gothic, '맑은고딕', Arial, Dotum, '돋움',
|
||
|
Gulim, '굴림';
|
||
|
font-size: 12px;
|
||
|
line-height: 18px !important;
|
||
|
-webkit-box-sizing: border-box;
|
||
|
-moz-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
div,
|
||
|
p,
|
||
|
ol,
|
||
|
ul,
|
||
|
li,
|
||
|
h1,
|
||
|
h2,
|
||
|
h3,
|
||
|
h4,
|
||
|
h5,
|
||
|
h6,
|
||
|
form,
|
||
|
iframe,
|
||
|
dl,
|
||
|
dt,
|
||
|
dd {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
-webkit-box-sizing: border-box;
|
||
|
-moz-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
ul,
|
||
|
ol {
|
||
|
list-style: none;
|
||
|
}
|