-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (50 loc) · 762 Bytes
/
Copy pathstyle.css
File metadata and controls
60 lines (50 loc) · 762 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 2rem;
background-color: #f4f4f4;
color: #333;
}
.cv-container {
max-width: 800px;
margin: auto;
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
header {
text-align: center;
margin-bottom: 2rem;
}
header h1 {
margin: 0;
font-size: 2.2em;
}
header h2 {
margin: 0.2em 0;
font-weight: normal;
color: #666;
}
section {
margin-bottom: 1.5rem;
}
h3 {
border-bottom: 2px solid #007ACC;
padding-bottom: 0.3rem;
color: #007ACC;
margin-bottom: 0.8rem;
}
ul {
padding-left: 1.2rem;
}
ul li {
margin-bottom: 0.3rem;
}
a {
color: #007ACC;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}