Skip to content

Commit ef074a8

Browse files
committed
WIP
1 parent 21e2a35 commit ef074a8

File tree

1 file changed

+99
-0
lines changed

1 file changed

+99
-0
lines changed

static/css/all.css

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1290,3 +1290,102 @@ div.ea-placement a:link {
12901290
.tag-description {
12911291
margin-bottom: 1em;
12921292
}
1293+
1294+
/* Dark mode */
1295+
@media (prefers-color-scheme: dark) {
1296+
body {
1297+
background-color: #1a1a1a;
1298+
color: #e0e0e0;
1299+
}
1300+
1301+
a:link {
1302+
color: #88c0ff;
1303+
border-color: #88c0ff;
1304+
}
1305+
1306+
a:visited {
1307+
color: #c088ff;
1308+
border-color: #c088ff;
1309+
}
1310+
1311+
div#ft {
1312+
background: linear-gradient(
1313+
to bottom,
1314+
#4a2e5c 0%,
1315+
#2d1b3d 49%,
1316+
#301c3e 100%
1317+
);
1318+
}
1319+
1320+
div#band,
1321+
div#smallhead,
1322+
h2.band {
1323+
background: linear-gradient(
1324+
to bottom,
1325+
#4a2e5c 0%,
1326+
#2d1b3d 49%,
1327+
#301c3e 100%
1328+
);
1329+
}
1330+
1331+
div#comments ol li {
1332+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Crect width='10' height='10' fill='%23333'/%3E%3C/svg%3E");
1333+
}
1334+
1335+
div#comments ol li.openid {
1336+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Crect width='10' height='10' fill='%23553300'/%3E%3C/svg%3E");
1337+
}
1338+
1339+
div#comments ol li.simon {
1340+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Crect width='10' height='10' fill='%23330033'/%3E%3C/svg%3E");
1341+
}
1342+
1343+
div#comments div.comment {
1344+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Crect width='10' height='10' fill='%23333'/%3E%3C/svg%3E");
1345+
}
1346+
1347+
div#comments ol li.openid div.comment {
1348+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Crect width='10' height='10' fill='%23553300'/%3E%3C/svg%3E");
1349+
}
1350+
1351+
div#comments ol li.simon div.comment {
1352+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Crect width='10' height='10' fill='%23330033'/%3E%3C/svg%3E");
1353+
}
1354+
1355+
table.monthcalendar {
1356+
border-color: #444;
1357+
}
1358+
1359+
table.monthcalendar td,
1360+
table.monthcalendar th {
1361+
border-color: #444;
1362+
}
1363+
1364+
div#primary div.segment {
1365+
border-bottom-color: #444;
1366+
}
1367+
1368+
.item-quote blockquote,
1369+
div#primary div.quote blockquote {
1370+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='11' y='171' font-family='Times New Roman, serif' font-size='180' fill='%23674188'%3E%E2%80%9C%3C/text%3E%3C/svg%3E");
1371+
}
1372+
1373+
.item-quote blockquote p,
1374+
div#primary div.quote blockquote p:last-child {
1375+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='11' y='171' font-family='Times New Roman, serif' font-size='180' fill='%23674188'%3E%E2%80%9D%3C/text%3E%3C/svg%3E");
1376+
}
1377+
1378+
a.item-tag {
1379+
background-color: #2c2433;
1380+
border-color: #555;
1381+
color: #e0e0e0;
1382+
}
1383+
1384+
a.item-tag:hover {
1385+
background-color: #3d3347;
1386+
}
1387+
1388+
.item-tag span {
1389+
color: #aaa;
1390+
}
1391+
}

0 commit comments

Comments
 (0)