워드프레스의 공식 사이트를 참고해 보면(https://codex.wordpress.org/ko:Theme_Development) 테마 제작시에 필요한 파일로 최소 3개의 파일이 있어야 합니다.
그중 첫번째가 style.css 파일로 아래의 내용이 파일의 가장 상단에 있어야 하며,
이후 사이트의 스타일을 지정하거나 다른 스타일을 불러서 사용할 수 있습니다.
우리는 underscores 사이트에서 기본적인 파일을 다운받아서 제작하기 때문에 해당 파일을 그대로 사용하거나 수정하여 사용할 수 있습니다.
/*
Theme Name: EZ
Theme URI: https://studio-moim.com/
Description: EZ theme.
Author: zeein
Author URI: https://studio-moim.com/
Version: 1.0
Tags: tailwindcss, swiper, aos, zeein, one-page
License:
License URI:
General comments (optional).
*/
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
}