/* style.css */ | |
/* ----------------------------- */ | |
/* PAGE SETTINGS */ | |
/* ----------------------------- */ | |
@page { | |
margin: 2cm; /* Margin di setiap halaman PDF */ | |
} | |
/* ----------------------------- */ | |
/* GLOBAL BODY */ | |
/* ----------------------------- */ | |
body { | |
font-family: "Arial", sans-serif; | |
font-size: 14px; | |
line-height: 1.4; | |
color: #333; | |
margin: 0; | |
padding: 0; | |
} | |
/* ----------------------------- */ | |
/* HEADINGS */ | |
/* ----------------------------- */ | |
h1, h2, h3, h4 { | |
color: #004080; | |
font-weight: bold; | |
margin-top: 0; | |
margin-bottom: 5px; | |
} | |
/* Heading 1 (misalnya nama) */ | |
h1 { | |
font-size: 26px; | |
margin-bottom: 8px; | |
} | |
/* Heading 2 (misalnya WORK EXPERIENCE, EDUCATION) */ | |
h2 { | |
font-size: 20px; | |
margin-top: 20px; /* spasi sebelum heading */ | |
margin-bottom: 8px; | |
} | |
/* Heading 3 (misalnya jabatan, nama institusi) */ | |
h3 { | |
font-size: 16px; | |
margin-top: 12px; | |
margin-bottom: 5px; | |
} | |
/* Heading 4 (opsional) */ | |
h4 { | |
font-size: 14px; | |
margin-top: 10px; | |
margin-bottom: 5px; | |
} | |
/* ----------------------------- */ | |
/* PARAGRAPH & TEXT */ | |
/* ----------------------------- */ | |
p { | |
margin: 5px 0; | |
} | |
strong { | |
font-weight: bold; | |
color: #000; | |
} | |
a { | |
color: #0066cc; | |
text-decoration: none; | |
} | |
/* ----------------------------- */ | |
/* LISTS (UL, LI) */ | |
/* ----------------------------- */ | |
ul { | |
margin-left: 20px; | |
margin-bottom: 10px; | |
padding-left: 0; | |
} | |
li { | |
margin-bottom: 5px; /* jarak antar bullet */ | |
} | |
/* Warna bullet */ | |
li::marker { | |
color: #004080; | |
font-weight: bold; | |
} | |
/* ----------------------------- */ | |
/* OPTIONAL CUSTOM CLASSES */ | |
/* ----------------------------- */ | |
/* | |
.subtitle { | |
font-size: 16px; | |
font-weight: bold; | |
color: #004080; | |
margin-top: 10px; | |
margin-bottom: 5px; | |
} | |
section { | |
margin-bottom: 15px; | |
} | |
*/ | |