muhammadsalmanalfaridzi commited on
Commit
dc8fc1a
·
verified ·
1 Parent(s): 09dbb49

Upload style.css

Browse files
Files changed (1) hide show
  1. resumes/style.css +79 -0
resumes/style.css ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Global styling */
2
+ body {
3
+ font-family: 'Arial', sans-serif;
4
+ font-size: 14px;
5
+ line-height: 1.4;
6
+ color: #333;
7
+ margin: 20px;
8
+ }
9
+
10
+ /* Header Styling */
11
+ h1, h2, h3 {
12
+ color: #004080;
13
+ margin-bottom: 5px;
14
+ font-weight: bold;
15
+ }
16
+
17
+ h1 {
18
+ font-size: 28px;
19
+ border-bottom: 2px solid #004080;
20
+ padding-bottom: 5px;
21
+ }
22
+
23
+ h2 {
24
+ font-size: 22px;
25
+ }
26
+
27
+ h3 {
28
+ font-size: 18px;
29
+ }
30
+
31
+ /* Section spacing */
32
+ section {
33
+ margin-bottom: 15px;
34
+ }
35
+
36
+ /* Bullet points */
37
+ ul {
38
+ margin-left: 20px;
39
+ padding-left: 0;
40
+ }
41
+
42
+ li {
43
+ margin-bottom: 5px;
44
+ }
45
+
46
+ li::marker {
47
+ color: #004080;
48
+ font-weight: bold;
49
+ }
50
+
51
+ /* Paragraph spacing */
52
+ p {
53
+ margin: 5px 0;
54
+ }
55
+
56
+ /* Inline styles */
57
+ strong {
58
+ color: #000;
59
+ font-weight: bold;
60
+ }
61
+
62
+ a {
63
+ color: #0066cc;
64
+ text-decoration: none;
65
+ }
66
+
67
+ /* Table of contents or subsections */
68
+ .subtitle {
69
+ font-size: 16px;
70
+ font-weight: bold;
71
+ color: #004080;
72
+ margin-top: 10px;
73
+ margin-bottom: 5px;
74
+ }
75
+
76
+ /* Page Margins */
77
+ @page {
78
+ margin: 2cm;
79
+ }