-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (42 loc) · 1.34 KB
/
styles.css
File metadata and controls
49 lines (42 loc) · 1.34 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
/* Additional styling for source code areas */
div.sourceCode {
background-color: var(--body-bg); /* Use body background for consistency */
}
/* Listing title style */
.listing-title {
color: var(--text-color); /* Use text color variable for listing titles */
text-decoration: underline;
font-weight: 700;
}
/* Styling for preformatted text blocks */
pre {
border: 1px solid var(--text-color); /* Use text color for border */
padding: 5px;
background-color: var(--code-bg); /* Use code background color */
color: var(--text-color); /* Ensure text color is consistent */
}
/* Inline code styling */
code {
background-color: var(--code-bg) !important; /* Use code background color */
color: var(--text-color); /* Ensure text color is consistent */
}
/* Inline code within paragraphs */
.post-body > p > code {
background-color: var(--code-bg); /* Use code background color */
color: var(--text-color); /* Ensure text color is consistent */
}
/* About page profile image */
.about-entity .about-image {
width: 600px; /* Adjust size */
height: auto;
border-radius: 50%; /* Optional: keep it circular */
}
/* Or target it more specifically for solana template */
.about-entity img {
max-width: 250px; /* Your preferred size */
}
/* Resize the Strava badge */
/* .strava-badge { */
/* width: 600px; */
/* height: auto; */
/* } */