-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path14_mycv.css
More file actions
51 lines (44 loc) · 750 Bytes
/
Copy path14_mycv.css
File metadata and controls
51 lines (44 loc) · 750 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
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 20px 0;
}
header h1 {
margin: 0;
}
section {
padding: 20px;
margin: 20px auto;
max-width: 800px;
background: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h2 {
color: #4CAF50;
border-bottom: 2px solid #4CAF50;
padding-bottom: 5px;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
footer {
text-align: center;
padding: 10px;
background-color: #f1f1f1;
margin-top: 20px;
font-size: 14px;
}