-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (65 loc) · 1.12 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
body {
font-family: Arial, sans-serif;
line-height: 1.4; /* Reduced line height */
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.resume {
max-width: 700px;
margin: 15px auto;
background: #fff;
padding: 15px;
border-radius: 6px;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
header {
text-align: center;
}
header h1 {
margin: 0;
font-size: 1.8em;
line-height: 1.4;
}
header p {
margin: 5px 0;
color: #171616;
line-height: 1.4; /* Reduced line height */
font-size: 0.9em;
}
section {
margin: 15px 0;
}
section h2 {
border-bottom: 1px solid #ddd;
padding-bottom: 3px;
margin-bottom: 8px;
font-size: 1.2em;
line-height: 1.5; /* Reduced line height */
}
.job {
margin-bottom: 15px;
}
.job h3 {
margin: 0;
font-size: 1.1em;
line-height: 1.5; /* Reduced line height */
}
.job p {
margin: 4px 0;
font-size: 0.9em;
line-height: 1.2; /* Reduced line height */
}
ul {
list-style-type: disc;
margin-left: 18px;
font-size: 0.9em;
line-height: 1.4; /* Reduced line height */
}
a {
color: #007BFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}