-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
185 lines (158 loc) · 2.84 KB
/
Copy pathstyles.css
File metadata and controls
185 lines (158 loc) · 2.84 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/* Custom styling for Nicky Garland's website */
/* Profile image styling */
.profile-img {
border-radius: 50%;
border: 4px solid #2C7FB8;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Enhanced grid styling */
.grid {
display: grid;
gap: 1.5rem;
margin-bottom: 2rem;
}
/* Card-like styling for content sections */
.callout-note {
border-left: 4px solid #2C7FB8;
background-color: #f8f9fa;
padding: 1rem 1.5rem;
margin: 1rem 0;
}
/* Skill badges */
.skill-badge {
display: inline-block;
background-color: #2C7FB8;
color: white;
padding: 0.3rem 0.8rem;
border-radius: 15px;
margin: 0.2rem;
font-size: 0.9rem;
}
/* Custom code block styling */
pre {
background-color: #f5f5f5;
border-left: 4px solid #2C7FB8;
padding: 1rem;
border-radius: 4px;
}
/* Link styling */
a {
color: #2C7FB8;
text-decoration: none;
transition: color 0.2s;
}
a:hover {
color: #1a4d78;
text-decoration: underline;
}
/* Header styling */
h1, h2, h3 {
color: #2d3748;
margin-top: 2rem;
margin-bottom: 1rem;
}
/* Improve table styling */
table {
margin: 1.5rem 0;
border-collapse: collapse;
width: 100%;
}
th {
background-color: #2C7FB8;
color: white;
padding: 0.75rem;
text-align: left;
}
td {
padding: 0.75rem;
border-bottom: 1px solid #e2e8f0;
}
tr:hover {
background-color: #f7fafc;
}
/* Navbar customization */
.navbar {
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Footer styling */
.page-footer {
margin-top: 3rem;
padding-top: 2rem;
border-top: 2px solid #e2e8f0;
}
/* Icon styling */
.fa, .ai {
margin-right: 0.3rem;
}
/* Responsive images */
img {
max-width: 100%;
height: auto;
}
/* Panel tabset styling */
.panel-tabset {
margin: 1.5rem 0;
}
/* Quote/blockquote styling */
blockquote {
border-left: 4px solid #2C7FB8;
padding-left: 1rem;
margin: 1.5rem 0;
font-style: italic;
color: #4a5568;
}
/* Timeline styling for experience page */
.timeline-item {
position: relative;
padding-left: 2rem;
margin-bottom: 2rem;
border-left: 2px solid #2C7FB8;
}
.timeline-item::before {
content: "";
position: absolute;
left: -6px;
top: 0;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #2C7FB8;
}
/* Button styling */
.btn {
display: inline-block;
padding: 0.5rem 1rem;
background-color: #2C7FB8;
color: white;
border-radius: 4px;
text-decoration: none;
transition: background-color 0.2s;
}
.btn:hover {
background-color: #1a4d78;
text-decoration: none;
color: white;
}
/* Improve spacing */
.column-page {
padding: 1rem 0;
}
/* Print-friendly styling */
@media print {
.navbar, .page-footer {
display: none;
}
a {
color: black;
text-decoration: underline;
}
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.grid {
grid-template-columns: 1fr !important;
}
.profile-img {
width: 150px !important;
}
}