reset.css

sdsdsrd·2020년 11월 10일

졸업프로젝트

목록 보기
6/15

css style을 reset 하기 위한 코드
@/css/reset.css

* {
	box-sizing: border-box;
	margin: 0;
}

body {
	font-family: 'NanumSquare', sans-serif;
	color: white;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font-family: 'NanumSquare', sans-serif;
	font-size: 16px;
}

button:focus,
button:active,
input:focus,
input:active,
textarea:focus,
textarea:active {
	outline: none;
	box-shadow: none;
}

ul,
ol,
li {
	list-style-type: none;
	padding-left: 0;
	margin-left: 0;
}

h1,
p,
label {
	font-size: 14px;
	line-height: 1.2142857143;
	color: white;
	letter-spacing: 0em;
}

나머지 css는 @/css/common.css에 작성

0개의 댓글