Skip to content

Commit 9cdc0bd

Browse files
authored
Add note about dates; Add Plausible
1 parent 990a50d commit 9cdc0bd

File tree

1 file changed

+30
-15
lines changed

1 file changed

+30
-15
lines changed

index.html

Lines changed: 30 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
--tag-bg: #e5e7eb;
1616
--footer-bg: #e2e8f0;
1717
--footer-text: #4b5563;
18+
--note-bg: rgba(109, 40, 217, 0.1);
1819
}
1920

2021
@media (prefers-color-scheme: dark) {
@@ -28,6 +29,7 @@
2829
--tag-bg: #374151;
2930
--footer-bg: #111827;
3031
--footer-text: #9ca3af;
32+
--note-bg: rgba(139, 92, 246, 0.15);
3133
}
3234
}
3335

@@ -39,9 +41,9 @@
3941
margin: 0 auto;
4042
padding: 2rem 1rem;
4143
background-color: var(--secondary-color);
42-
min-height: 100vh;
4344
display: flex;
4445
flex-direction: column;
46+
min-height: 100vh;
4547
}
4648

4749
main {
@@ -74,10 +76,11 @@
7476
ul {
7577
list-style-type: none;
7678
padding-left: 0;
79+
margin-bottom: 2rem;
7780
}
7881

7982
li {
80-
margin-bottom: 1rem;
83+
margin-bottom: 0.75rem;
8184
padding-left: 1.5rem;
8285
position: relative;
8386
}
@@ -100,15 +103,6 @@
100103
text-decoration: underline;
101104
}
102105

103-
.tag {
104-
display: inline-block;
105-
background-color: var(--tag-bg);
106-
padding: 0.2rem 0.5rem;
107-
border-radius: 4px;
108-
font-size: 0.8rem;
109-
margin-right: 0.5rem;
110-
}
111-
112106
.date-code {
113107
font-family: monospace;
114108
color: var(--accent-color);
@@ -129,9 +123,22 @@
129123
font-weight: bold;
130124
}
131125

126+
.note {
127+
background-color: var(--note-bg);
128+
border-radius: 6px;
129+
padding: 0.75rem 1rem;
130+
margin: 1.5rem 0;
131+
font-size: 0.9rem;
132+
line-height: 1.5;
133+
}
134+
135+
.note p {
136+
margin: 0;
137+
}
138+
132139
footer {
133-
margin-top: 3rem;
134-
padding-top: 1.5rem;
140+
margin-top: 2rem;
141+
padding-top: 1rem;
135142
border-top: 1px solid var(--accent-color);
136143
color: var(--footer-text);
137144
font-size: 0.9rem;
@@ -142,7 +149,7 @@
142149
display: flex;
143150
justify-content: center;
144151
gap: 1.5rem;
145-
margin-bottom: 1rem;
152+
margin: 0.5rem 0;
146153
}
147154

148155
.footer-links a {
@@ -156,15 +163,23 @@
156163

157164
.copyright {
158165
font-size: 0.8rem;
166+
margin-top: 0.5rem;
167+
opacity: 0.8;
159168
}
160169
</style>
170+
171+
<script defer data-domain="ideas.perguth.de" src="https://plausible.io/js/script.js"></script>
161172
</head>
162173
<body>
163174
<main>
164175
<h1>Ideas</h1>
165176

166177
<blockquote>🤔 • Political, sociological, philosophical ideas and mashups.</blockquote>
167178

179+
<div class="note">
180+
<p>Note: The dates shown (e.g., `130528`) represent backup dates, not creation dates. These ideas were originally developed in my youth. All content remains under copyright protection.</p>
181+
</div>
182+
168183
<h2>Politics</h2>
169184
<ul>
170185
<li>
@@ -231,7 +246,7 @@ <h2>Mashups</h2>
231246
<a href="https://perguth.de/" target="_blank" rel="noopener noreferrer">Home</a>
232247
</div>
233248
<div class="copyright">
234-
&copy; <script>document.write(new Date().getFullYear())</script> Per Guth
249+
&copy; Per Guth. All rights reserved.
235250
</div>
236251
</footer>
237252
</body>

0 commit comments

Comments
 (0)