2023-08-10 03:39:50 +02:00
|
|
|
::selection{
|
|
|
|
color: black;
|
|
|
|
background-color: #E60073;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background: black;
|
|
|
|
color: #E60073;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 1.2em;
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
summary{cursor:pointer;}
|
2023-08-10 23:20:58 +02:00
|
|
|
summary:hover{
|
|
|
|
-webkit-filter: url(#chroma);
|
|
|
|
color: black;
|
|
|
|
background-color: #E60073;
|
|
|
|
}
|
2023-08-10 03:39:50 +02:00
|
|
|
|
|
|
|
a{
|
|
|
|
color: #E60073;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a::after{ content: ']'; }
|
2023-08-10 04:00:46 +02:00
|
|
|
|
2023-08-10 03:39:50 +02:00
|
|
|
a::before{ content: '['; }
|
|
|
|
|
|
|
|
a:hover{
|
|
|
|
color: black;
|
|
|
|
background-color: #E60073;
|
2023-08-10 23:20:58 +02:00
|
|
|
position:relative;
|
|
|
|
-webkit-filter: url(#chroma);
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover::selection{
|
|
|
|
background-color: black;
|
|
|
|
color: #E60073;
|
2023-08-10 03:39:50 +02:00
|
|
|
}
|
|
|
|
|
2023-08-10 04:20:23 +02:00
|
|
|
.postImage a::before{ content: none; }
|
|
|
|
.postImage a::after{ content: none; }
|
|
|
|
|
|
|
|
code{
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
2023-08-10 03:39:50 +02:00
|
|
|
img{
|
|
|
|
max-width: 100%;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
figcaption{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
span{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
main{
|
|
|
|
margin: auto;
|
|
|
|
max-width: 80ch;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.anchor{visibility: hidden; text-decoration: none;}
|
2023-08-10 23:20:58 +02:00
|
|
|
h1:target::before,h2:target::before,h3:target::before,h4:target::before,h5:target::before,h6:target::before{content:"> "; }
|
2023-08-10 03:39:50 +02:00
|
|
|
h1:hover>a,h2:hover>a,h3:hover>a,h4:hover>a,h5:hover>a,h6:hover>a{visibility:visible;}
|
2023-08-10 23:20:58 +02:00
|
|
|
h1:target>a,h2:target>a,h3:target>a,h4:target>a,h5:target>a,h6:target>a{color:black; visibility:visible;}
|
2023-08-10 03:39:50 +02:00
|
|
|
:target{color:black; background-color: #E60073;}
|
|
|
|
|
|
|
|
footer{
|
|
|
|
text-align: center;
|
|
|
|
border-top:1pt solid;
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer pre{
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2023-08-10 04:20:23 +02:00
|
|
|
table.posts{ width: 100%; }
|
2023-08-10 23:20:58 +02:00
|
|
|
|
2023-08-10 04:20:23 +02:00
|
|
|
.post-content{
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
2023-08-10 03:39:50 +02:00
|
|
|
@media(min-width: 81ch){
|
|
|
|
header{
|
|
|
|
display:flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
menu{
|
|
|
|
display:flex;
|
|
|
|
}
|
|
|
|
menu a{
|
|
|
|
padding:1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media(max-width: 80ch){
|
|
|
|
header{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
header h1{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
menu{
|
|
|
|
visibility: collapse;
|
|
|
|
}
|
|
|
|
}
|