Update resumes/style.css
Browse files- resumes/style.css +17 -42
resumes/style.css
CHANGED
@@ -1,18 +1,21 @@
|
|
1 |
/* style.css */
|
2 |
|
3 |
/* ----------------------------- */
|
4 |
-
/*
|
5 |
/* ----------------------------- */
|
6 |
@page {
|
7 |
margin: 2cm; /* Margin di setiap halaman PDF */
|
8 |
}
|
9 |
|
|
|
|
|
|
|
10 |
body {
|
11 |
font-family: "Arial", sans-serif;
|
12 |
font-size: 14px;
|
13 |
line-height: 1.4;
|
14 |
color: #333;
|
15 |
-
margin: 0;
|
16 |
padding: 0;
|
17 |
}
|
18 |
|
@@ -22,24 +25,24 @@ body {
|
|
22 |
h1, h2, h3, h4 {
|
23 |
color: #004080;
|
24 |
font-weight: bold;
|
25 |
-
margin-top: 0;
|
26 |
margin-bottom: 5px;
|
27 |
}
|
28 |
|
29 |
-
/* Heading 1 (misalnya
|
30 |
h1 {
|
31 |
font-size: 26px;
|
32 |
margin-bottom: 8px;
|
33 |
}
|
34 |
|
35 |
-
/* Heading 2 (misalnya
|
36 |
h2 {
|
37 |
font-size: 20px;
|
38 |
-
margin-top: 20px; /*
|
39 |
margin-bottom: 8px;
|
40 |
}
|
41 |
|
42 |
-
/* Heading 3 (misalnya
|
43 |
h3 {
|
44 |
font-size: 16px;
|
45 |
margin-top: 12px;
|
@@ -60,13 +63,11 @@ p {
|
|
60 |
margin: 5px 0;
|
61 |
}
|
62 |
|
63 |
-
/* Strong text */
|
64 |
strong {
|
65 |
font-weight: bold;
|
66 |
color: #000;
|
67 |
}
|
68 |
|
69 |
-
/* Link text */
|
70 |
a {
|
71 |
color: #0066cc;
|
72 |
text-decoration: none;
|
@@ -76,46 +77,25 @@ a {
|
|
76 |
/* LISTS (UL, LI) */
|
77 |
/* ----------------------------- */
|
78 |
ul {
|
79 |
-
margin-left: 20px;
|
80 |
-
margin-bottom: 10px;
|
81 |
-
padding-left: 0;
|
82 |
}
|
83 |
|
84 |
li {
|
85 |
-
margin-bottom: 5px; /*
|
86 |
}
|
87 |
|
88 |
-
/*
|
89 |
li::marker {
|
90 |
color: #004080;
|
91 |
font-weight: bold;
|
92 |
}
|
93 |
|
94 |
/* ----------------------------- */
|
95 |
-
/*
|
96 |
/* ----------------------------- */
|
97 |
-
/*
|
98 |
-
table {
|
99 |
-
width: 100%;
|
100 |
-
border-collapse: collapse;
|
101 |
-
margin-bottom: 15px;
|
102 |
-
}
|
103 |
-
|
104 |
-
th, td {
|
105 |
-
border: 1px solid #ccc;
|
106 |
-
padding: 8px;
|
107 |
-
text-align: left;
|
108 |
-
}
|
109 |
-
|
110 |
-
th {
|
111 |
-
background-color: #f3f3f3;
|
112 |
-
}
|
113 |
-
*/
|
114 |
-
|
115 |
-
/* ----------------------------- */
|
116 |
-
/* CUSTOM CLASSES (opsional) */
|
117 |
-
/* ----------------------------- */
|
118 |
-
/* Jika Anda punya class custom di Markdown, Anda bisa tambahkan di sini.
|
119 |
.subtitle {
|
120 |
font-size: 16px;
|
121 |
font-weight: bold;
|
@@ -123,12 +103,7 @@ th {
|
|
123 |
margin-top: 10px;
|
124 |
margin-bottom: 5px;
|
125 |
}
|
126 |
-
*/
|
127 |
|
128 |
-
/* ----------------------------- */
|
129 |
-
/* SECTION (opsional) */
|
130 |
-
/* ----------------------------- */
|
131 |
-
/* Jika di Markdown ada elemen <section>, Anda bisa mengatur spacing di sini.
|
132 |
section {
|
133 |
margin-bottom: 15px;
|
134 |
}
|
|
|
1 |
/* style.css */
|
2 |
|
3 |
/* ----------------------------- */
|
4 |
+
/* PAGE SETTINGS */
|
5 |
/* ----------------------------- */
|
6 |
@page {
|
7 |
margin: 2cm; /* Margin di setiap halaman PDF */
|
8 |
}
|
9 |
|
10 |
+
/* ----------------------------- */
|
11 |
+
/* GLOBAL BODY */
|
12 |
+
/* ----------------------------- */
|
13 |
body {
|
14 |
font-family: "Arial", sans-serif;
|
15 |
font-size: 14px;
|
16 |
line-height: 1.4;
|
17 |
color: #333;
|
18 |
+
margin: 0;
|
19 |
padding: 0;
|
20 |
}
|
21 |
|
|
|
25 |
h1, h2, h3, h4 {
|
26 |
color: #004080;
|
27 |
font-weight: bold;
|
28 |
+
margin-top: 0;
|
29 |
margin-bottom: 5px;
|
30 |
}
|
31 |
|
32 |
+
/* Heading 1 (misalnya nama) */
|
33 |
h1 {
|
34 |
font-size: 26px;
|
35 |
margin-bottom: 8px;
|
36 |
}
|
37 |
|
38 |
+
/* Heading 2 (misalnya WORK EXPERIENCE, EDUCATION) */
|
39 |
h2 {
|
40 |
font-size: 20px;
|
41 |
+
margin-top: 20px; /* spasi sebelum heading */
|
42 |
margin-bottom: 8px;
|
43 |
}
|
44 |
|
45 |
+
/* Heading 3 (misalnya jabatan, nama institusi) */
|
46 |
h3 {
|
47 |
font-size: 16px;
|
48 |
margin-top: 12px;
|
|
|
63 |
margin: 5px 0;
|
64 |
}
|
65 |
|
|
|
66 |
strong {
|
67 |
font-weight: bold;
|
68 |
color: #000;
|
69 |
}
|
70 |
|
|
|
71 |
a {
|
72 |
color: #0066cc;
|
73 |
text-decoration: none;
|
|
|
77 |
/* LISTS (UL, LI) */
|
78 |
/* ----------------------------- */
|
79 |
ul {
|
80 |
+
margin-left: 20px;
|
81 |
+
margin-bottom: 10px;
|
82 |
+
padding-left: 0;
|
83 |
}
|
84 |
|
85 |
li {
|
86 |
+
margin-bottom: 5px; /* jarak antar bullet */
|
87 |
}
|
88 |
|
89 |
+
/* Warna bullet */
|
90 |
li::marker {
|
91 |
color: #004080;
|
92 |
font-weight: bold;
|
93 |
}
|
94 |
|
95 |
/* ----------------------------- */
|
96 |
+
/* OPTIONAL CUSTOM CLASSES */
|
97 |
/* ----------------------------- */
|
98 |
+
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
.subtitle {
|
100 |
font-size: 16px;
|
101 |
font-weight: bold;
|
|
|
103 |
margin-top: 10px;
|
104 |
margin-bottom: 5px;
|
105 |
}
|
|
|
106 |
|
|
|
|
|
|
|
|
|
107 |
section {
|
108 |
margin-bottom: 15px;
|
109 |
}
|