-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (59 loc) · 1.22 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
/* Reset some default browser styles */
body, h1, h2, ul, li {
margin: 0;
padding: 0;
}
/* Style the body with a dark blue background color */
body {
font-family: Arial, sans-serif;
background-color: #0e0f0f; /* Dark blue color */
color: #fff;
line-height: 1.6;
padding: 20px;
}
/* Style the header */
header {
background-color: #d47d21;
color: #0f0e0e;
text-align: center;
padding: 10px 0;
}
/* Style the navigation */
nav ul {
list-style-type: none;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav a {
text-decoration: none;
color: #1f041b;
font-weight: bold;
}
/* Style the sections */
section {
background-color: #001f3f;
padding: 20px;
margin: 20px 0;
border-radius: 5px;
}
/* Style the CV section */
#cv {
background-color: #001f3f; /* Dark blue color */
padding: 20px;
margin: 20px 0;
border-radius: 5px;
}
#cv a {
display: inline-block;
padding: 10px 20px;
background-color: #cd500d;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
#cv a:hover {
background-color: #0056b3;
}