-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
153 lines (131 loc) · 3.23 KB
/
Copy pathstyle.css
File metadata and controls
153 lines (131 loc) · 3.23 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
/* BitDevs Melbourne - Computational Geometric Design */
/* CSS Variables for consistent theming */
:root {
--color-primary: #00ffff;
--color-secondary: #ff9900;
--color-tertiary: #888;
--color-background: #0a0a0f;
--color-surface: #1a1a2e;
--color-text: #e0e0e0;
--color-accent: #7c3aed;
--color-muted: #404040;
}
/* Bitcoin network-inspired background pattern */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 25% 25%, rgba(255, 153, 0, 0.02) 0%, transparent 60%),
radial-gradient(circle at 75% 75%, rgba(0, 255, 255, 0.015) 0%, transparent 60%),
linear-gradient(45deg, transparent 49.8%, rgba(255, 153, 0, 0.008) 50%, transparent 50.2%);
background-size: 400px 400px, 500px 500px, 150px 150px;
background-position: 0 0, 200px 200px, 0 0;
pointer-events: none;
z-index: -1;
}
/* Hexagonal accent elements */
.hex-accent {
position: relative;
}
.hex-accent::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: linear-gradient(45deg, var(--color-primary), var(--color-accent), var(--color-secondary));
border-radius: 4px;
z-index: -1;
opacity: 0;
transition: opacity 0.3s ease;
}
.hex-accent:hover::before {
opacity: 0.3;
}
/* Custom styling for post content */
/* Post content headers (scoped to .prose to avoid affecting site headers) */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
color: var(--color-primary);
font-weight: 600;
margin-top: 1.5rem;
margin-bottom: 1rem;
position: relative;
}
.prose h1::before, .prose h2::before {
content: '▶ ';
color: var(--color-secondary);
font-size: 0.8em;
}
.prose h1 { font-size: 2rem; line-height: 2.5rem; }
.prose h2 { font-size: 1.75rem; line-height: 2.25rem; }
.prose h3 { font-size: 1.5rem; line-height: 2rem; }
.prose h4 { font-size: 1.25rem; line-height: 1.75rem; }
.prose h5 { font-size: 1.125rem; line-height: 1.625rem; }
.prose h6 { font-size: 1rem; line-height: 1.5rem; }
/* List styling with hyphens */
.prose ul {
list-style-type: none;
padding-left: 0;
margin-bottom: 1rem;
}
.prose ul li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.5rem;
}
.prose ul li:before {
content: '◯';
position: absolute;
left: 0;
color: var(--color-secondary);
font-weight: 600;
font-size: 0.8em;
top: 0.2em;
}
.prose ol {
list-style-type: decimal;
padding-left: 1.5rem;
margin-bottom: 1rem;
}
.prose ol li {
margin-bottom: 0.5rem;
}
/* Link styling with hover effects */
.prose a {
color: var(--color-secondary);
text-decoration: none;
transition: all 0.2s ease;
}
.prose a:hover {
color: var(--color-tertiary);
text-decoration: underline;
}
/* Paragraph spacing */
.prose p {
margin-bottom: 1rem;
}
/* Navigation and site-wide link hover effects */
.hover\:text-secondary:hover {
color: var(--color-secondary);
}
.hover\:text-tertiary:hover {
color: var(--color-tertiary);
}
/* Mobile responsiveness */
@media (max-width: 768px) {
body::before {
background-size: 300px 300px, 400px 400px, 100px 100px;
}
.hex-accent {
display: block;
margin-bottom: 0.5rem;
}
.hex-accent:last-child {
margin-bottom: 0;
}
}