-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (101 loc) · 1.55 KB
/
Copy pathstyle.css
File metadata and controls
109 lines (101 loc) · 1.55 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* Base body styling */
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #333;
background-color: #f9f9f9;
line-height: 1.6;
margin: 0;
padding: 0;
}
/* Navbar styling */
.navbar {
background-color: #ffffff !important;
border-bottom: 1px solid #e5e5e5;
}
.navbar-brand {
font-weight: 700;
font-size: 1.6rem;
color: #222;
}
.navbar-nav .nav-link {
font-weight: 500;
margin-right: 1rem;
color: #555;
}
.navbar-nav .nav-link.active {
color: #007bff;
}
/* Section spacing */
section {
margin-bottom: 5rem;
padding: 0 15px;
}
/* Headings */
h1 {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: #222;
}
h2 {
font-size: 1.9rem;
font-weight: 600;
margin-top: 2rem;
margin-bottom: 1rem;
border-bottom: 2px solid #007bff;
padding-bottom: 0.25rem;
}
h5 {
font-weight: 600;
margin-top: 1rem;
margin-bottom: 0.5rem;
}
/* CV content */
#cv p, #cv li {
font-size: 1rem;
margin-bottom: 0.5rem;
}
/* Lists */
ul.list-group {
padding-left: 0;
}
ul.list-group li {
background-color: #ffffff;
border: 1px solid #e0e0e0;
margin-bottom: 0.5rem;
padding: 0.8rem 1rem;
border-radius: 0.3rem;
transition: all 0.2s ease;
}
ul.list-group li:hover {
background-color: #f0f8ff;
border-color: #007bff;
}
/* Links */
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Footer */
footer {
font-size: 0.9rem;
color: #666;
background-color: #ffffff;
border-top: 1px solid #e5e5e5;
padding: 15px 0;
}
/* Responsive adjustments */
@media (max-width: 768px) {
h1 {
font-size: 2.2rem;
}
h2 {
font-size: 1.6rem;
}
h5 {
font-size: 1rem;
}
}