2024-05-07 00:45:13 +00:00
|
|
|
/*/
|
|
|
|
Type: file
|
|
|
|
Content-Type: text/css
|
|
|
|
Title: Stylesheet
|
|
|
|
Location: /styles.css
|
|
|
|
/**/
|
|
|
|
|
2024-05-08 05:43:47 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@100..900&family=Courgette&family=Noto+Color+Emoji&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
|
2024-05-07 00:45:13 +00:00
|
|
|
@import url('https://static.omg.lol/type/font-md-io.css');
|
|
|
|
@import url('https://static.omg.lol/type/fontawesome-free/css/all.css');
|
|
|
|
@import url('https://static.omg.lol/profiles/icons/omg.lol-icons.css');
|
|
|
|
|
|
|
|
:root {
|
2024-05-10 06:55:19 +00:00
|
|
|
--foreground: #e2dae9;
|
2024-05-10 04:29:07 +00:00
|
|
|
--background: #242129;
|
|
|
|
--card-bg: #242129;
|
2024-05-10 06:55:19 +00:00
|
|
|
--link: #8000ff;
|
2024-05-10 04:29:07 +00:00
|
|
|
--accent: #845e9e;
|
2024-05-07 00:45:13 +00:00
|
|
|
|
2024-05-10 04:29:07 +00:00
|
|
|
--font-main: 'Rubik', sans-serif, 'Noto Color Emoji';
|
|
|
|
--font-head: 'Grenze Gotisch', sans-serif, 'Noto Color Emoji';
|
|
|
|
--font-code: 'MD IO 0.4', monospace, 'Noto Color Emoji';
|
|
|
|
--font-em: 'Courgette', cursive;
|
2024-05-07 00:45:13 +00:00
|
|
|
|
2024-05-10 04:29:07 +00:00
|
|
|
--font-main-weight: 400;
|
|
|
|
--font-head-weight: 400;
|
|
|
|
--font-code-weight: 400;
|
|
|
|
--font-em-weight: 400;
|
2024-05-08 05:43:47 +00:00
|
|
|
|
2024-05-10 04:29:07 +00:00
|
|
|
--paper-texture-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence baseFrequency='.4' numOctaves='3' stitchTiles='stitch' type='fractalNoise'/%3E%3CfeDropShadow dx='0' dy='0' flood-color='%23888' flood-opacity='.5' stdDeviation='1'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
|
2024-05-13 02:14:52 +00:00
|
|
|
--shadow: 1px 2px 0.5em 1px rgba(17, 17, 17, 0.2);
|
|
|
|
--neon-glow-gradient: linear-gradient(45deg, #e200fb, #461036, #9100ff,#bf72f0, #5600ff, #e000fb, #5d1489, #7c519d,#730275, #934eaf);
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: light) {
|
2024-05-10 04:29:07 +00:00
|
|
|
html {
|
|
|
|
filter: invert(1) hue-rotate(180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
img,
|
|
|
|
svg,
|
|
|
|
video {
|
|
|
|
filter: invert(1) hue-rotate(180deg);
|
|
|
|
}
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
2024-05-10 04:29:07 +00:00
|
|
|
box-sizing: border-box;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2024-05-10 04:29:07 +00:00
|
|
|
font-family: var(--font-main);
|
|
|
|
font-weight: var(--font-main-weight);
|
|
|
|
font-optical-sizing: auto;
|
|
|
|
font-size: 120%;
|
|
|
|
color: var(--foreground);
|
|
|
|
background: var(--background);
|
2024-05-10 06:55:19 +00:00
|
|
|
margin:0;
|
|
|
|
padding:0;
|
2024-05-10 04:29:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
article,
|
2024-05-11 06:41:57 +00:00
|
|
|
main.page,
|
2024-05-13 00:57:57 +00:00
|
|
|
main>nav,
|
2024-05-11 06:41:57 +00:00
|
|
|
.card {
|
2024-05-10 04:29:07 +00:00
|
|
|
max-width: 42em;
|
|
|
|
border-radius: 1em;
|
|
|
|
margin: 3em auto;
|
|
|
|
padding: 2em;
|
|
|
|
background-color: var(--card-bg);
|
|
|
|
background-image: var(--paper-texture-svg);
|
|
|
|
background-repeat: repeat;
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: start;
|
|
|
|
box-shadow: var(--shadow);
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
2024-05-07 01:34:40 +00:00
|
|
|
.post-info {
|
2024-05-10 04:29:07 +00:00
|
|
|
margin-top: -1rem;
|
|
|
|
margin-right: -1rem;
|
|
|
|
width: 100%;
|
2024-05-07 01:57:07 +00:00
|
|
|
}
|
|
|
|
|
2024-05-10 04:29:07 +00:00
|
|
|
.post-info,
|
|
|
|
.post-tags {
|
|
|
|
font-size: 85%;
|
|
|
|
color: var(--accent);
|
|
|
|
text-align: right;
|
2024-05-07 01:34:40 +00:00
|
|
|
}
|
2024-05-07 00:45:13 +00:00
|
|
|
|
2024-05-07 01:34:40 +00:00
|
|
|
.post-info i:nth-child(2) {
|
2024-05-10 04:29:07 +00:00
|
|
|
margin-left: .75em;
|
2024-05-07 01:34:40 +00:00
|
|
|
}
|
2024-05-07 00:45:13 +00:00
|
|
|
|
2024-05-11 02:43:50 +00:00
|
|
|
.post-info a {
|
2024-05-10 04:29:07 +00:00
|
|
|
margin-left: 1em;
|
2024-05-10 06:55:19 +00:00
|
|
|
background: none;
|
2024-05-09 08:01:57 +00:00
|
|
|
}
|
|
|
|
|
2024-05-07 06:11:03 +00:00
|
|
|
article p {
|
2024-05-10 04:29:07 +00:00
|
|
|
width: 100%;
|
2024-05-07 06:11:03 +00:00
|
|
|
}
|
|
|
|
|
2024-05-07 02:00:38 +00:00
|
|
|
article p:has(img) {
|
2024-05-10 04:29:07 +00:00
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
2024-05-07 02:00:38 +00:00
|
|
|
}
|
2024-05-07 00:45:13 +00:00
|
|
|
|
2024-05-07 05:30:46 +00:00
|
|
|
em {
|
2024-05-10 04:29:07 +00:00
|
|
|
font-family: var(--font-em);
|
|
|
|
font-weight: var(--font-em-weight);
|
|
|
|
font-style: normal;
|
|
|
|
color: color-mix(in lch, var(--link), var(--foreground));
|
2024-05-07 05:30:46 +00:00
|
|
|
}
|
2024-05-07 00:45:13 +00:00
|
|
|
|
2024-05-07 06:06:04 +00:00
|
|
|
iframe {
|
2024-05-10 04:29:07 +00:00
|
|
|
margin: 0 auto;
|
2024-05-07 06:06:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.caption {
|
2024-05-10 04:29:07 +00:00
|
|
|
text-align: center;
|
|
|
|
margin-block-start: 0.5em;
|
|
|
|
font-size: smaller;
|
|
|
|
color: var(--accent);
|
|
|
|
font-family: var(--font-em);
|
|
|
|
font-weight: var(--font-em-weight);
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
font-family: var(--font-head);
|
|
|
|
font-weight: var(--font-head-weight);
|
|
|
|
margin: 1rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 3em;
|
|
|
|
line-height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 2em;
|
2024-05-07 06:06:04 +00:00
|
|
|
}
|
|
|
|
|
2024-05-10 04:29:07 +00:00
|
|
|
h3 {
|
|
|
|
font-size: 1.5em;
|
2024-05-08 05:43:47 +00:00
|
|
|
}
|
|
|
|
|
2024-05-10 04:29:07 +00:00
|
|
|
h4 {
|
|
|
|
font-size: 1.17em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h6 {
|
|
|
|
font-size: .83em;
|
|
|
|
}
|
2024-05-08 06:18:26 +00:00
|
|
|
|
2024-05-08 06:09:45 +00:00
|
|
|
iframe {
|
2024-05-10 04:29:07 +00:00
|
|
|
max-width: 100%;
|
2024-05-08 06:09:45 +00:00
|
|
|
}
|
|
|
|
|
2024-05-09 08:01:57 +00:00
|
|
|
[data-emoji] {
|
2024-05-10 04:29:07 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-size: 2em;
|
|
|
|
min-width: 1em;
|
|
|
|
font-style: normal;
|
2024-05-09 08:01:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[data-emoji]::before {
|
2024-05-10 04:29:07 +00:00
|
|
|
content: attr(data-emoji);
|
2024-05-09 08:01:57 +00:00
|
|
|
}
|
|
|
|
|
2024-05-10 04:29:07 +00:00
|
|
|
[data-emoji='{emoji}'],
|
|
|
|
[href='{status_url}'],
|
|
|
|
[href='{external_url}'] {
|
|
|
|
display: none;
|
2024-05-09 08:01:57 +00:00
|
|
|
}
|
2024-05-08 05:43:47 +00:00
|
|
|
|
2024-05-10 06:55:19 +00:00
|
|
|
header,
|
|
|
|
main,
|
|
|
|
footer {
|
|
|
|
max-width: 60em;
|
|
|
|
margin: 2em auto;
|
|
|
|
padding: 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
header>.avatar {
|
|
|
|
max-width: 60px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
margin: 0 0 2em 0;
|
|
|
|
background-color: #000;
|
|
|
|
border-radius: 0 0 1rem 1rem;
|
|
|
|
box-shadow: var(--shadow);
|
|
|
|
}
|
|
|
|
header {
|
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: end;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
header>h1 {
|
|
|
|
margin:0 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
header>nav {
|
|
|
|
margin-left: auto;
|
|
|
|
font-family: var(--font-code);
|
|
|
|
font-weight: var(--font-code-weight);
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
background-image: linear-gradient(to bottom, var(--accent) 0%, var(--accent) 100%);
|
|
|
|
background-position: 0 100%;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
background-size: 5px 5px;
|
|
|
|
transition: 250ms ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
background-size: 5px 100%;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 a {
|
|
|
|
background: none
|
|
|
|
}
|
|
|
|
|
|
|
|
.weblog-title a {
|
|
|
|
background: none;
|
|
|
|
}
|
2024-05-13 00:57:57 +00:00
|
|
|
.weblog-title a:hover, .post-info a:hover {
|
|
|
|
text-shadow: 0 0 .5em var(--accent), 0 0 .25em var(--foreground);
|
|
|
|
}
|
2024-05-10 06:55:19 +00:00
|
|
|
|
2024-05-13 00:57:57 +00:00
|
|
|
main>nav {
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2024-05-13 01:03:56 +00:00
|
|
|
.previous-page{
|
|
|
|
margin-left:auto;
|
|
|
|
}
|
2024-05-10 06:55:19 +00:00
|
|
|
|
2024-05-13 00:57:57 +00:00
|
|
|
.mirror {
|
|
|
|
transform: scaleX(-1);
|
|
|
|
}
|
2024-05-07 06:06:04 +00:00
|
|
|
|
2024-05-07 00:45:13 +00:00
|
|
|
|
2024-05-07 06:11:03 +00:00
|
|
|
|
2024-05-07 00:45:13 +00:00
|
|
|
header nav ul {
|
2024-05-10 04:29:07 +00:00
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header nav li {
|
2024-05-10 04:29:07 +00:00
|
|
|
display: inline-block;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header nav li a {
|
2024-05-10 04:29:07 +00:00
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
2024-05-10 06:55:19 +00:00
|
|
|
margin-right: 0.5em;
|
|
|
|
padding: 0 .3em;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
2024-05-10 04:29:07 +00:00
|
|
|
p,
|
|
|
|
li {
|
|
|
|
line-height: 160%;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
footer p {
|
2024-05-10 04:29:07 +00:00
|
|
|
margin-top: 5em;
|
|
|
|
font-size: 90%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2024-05-07 00:45:13 +00:00
|
|
|
.tag {
|
2024-05-10 04:29:07 +00:00
|
|
|
background: var(--accent);
|
2024-05-10 06:55:19 +00:00
|
|
|
color: var(--background);
|
2024-05-10 04:29:07 +00:00
|
|
|
padding: .3em .4em;
|
|
|
|
margin: .8em 0 0 .4em;
|
|
|
|
border-radius: .5em;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
2024-05-10 06:55:19 +00:00
|
|
|
.tag:hover {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2024-05-07 00:45:13 +00:00
|
|
|
hr {
|
2024-05-10 04:29:07 +00:00
|
|
|
border: 0;
|
|
|
|
height: 1px;
|
|
|
|
background: #333;
|
|
|
|
margin: 2em 0;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
2024-05-10 04:29:07 +00:00
|
|
|
padding: .2em .3em;
|
|
|
|
border: 1px solid var(--accent);
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
2024-05-10 04:29:07 +00:00
|
|
|
pre,
|
|
|
|
code {
|
|
|
|
font-family: var(--font-code);
|
|
|
|
font-weight: var(--font-code-weight);
|
|
|
|
font-size: 90%;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pre code {
|
2024-05-10 04:29:07 +00:00
|
|
|
background: #000;
|
|
|
|
color: #eee;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 1em;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
2024-05-10 04:29:07 +00:00
|
|
|
max-width: 100%;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
2024-05-10 04:29:07 +00:00
|
|
|
border-collapse: collapse;
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|
|
|
|
|
2024-05-10 04:29:07 +00:00
|
|
|
td,
|
|
|
|
th {
|
|
|
|
padding: .75em;
|
|
|
|
text-align: left;
|
|
|
|
border: 1px solid var(--accent);
|
2024-05-11 06:41:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fedi-social {
|
2024-05-11 06:45:17 +00:00
|
|
|
margin-left: 0.5rem;
|
2024-05-11 06:41:57 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
fedi-social summary {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
|
|
|
background-color: var(--accent);
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
fedi-social img {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
fedi-social summary + * {
|
|
|
|
position:absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
fedi-social .popover {
|
|
|
|
max-width: 300px;
|
|
|
|
min-height: 100px;
|
|
|
|
font-size: 85%;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: 100;
|
|
|
|
border-radius: 1em 0 1em 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
fedi-social .popover p {
|
|
|
|
line-height: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
fedi-social a {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
fedi-social i::before {
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 48px;
|
2024-05-13 02:14:52 +00:00
|
|
|
}
|
|
|
|
|
2024-05-13 03:22:58 +00:00
|
|
|
main.page:has(>#details)::before,
|
|
|
|
main.page:has(>#details)::after {
|
2024-05-13 02:14:52 +00:00
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
left: -2px;
|
|
|
|
top: -2px;
|
|
|
|
background: var(--neon-glow-gradient);
|
|
|
|
background-size: 300%;
|
|
|
|
width: calc(100% + 3px);
|
|
|
|
height: calc(100% + 3px);
|
|
|
|
z-index: -1;
|
|
|
|
animation: glow 30s linear infinite;
|
|
|
|
border-radius: 1em;
|
|
|
|
}
|
|
|
|
|
2024-05-13 03:22:58 +00:00
|
|
|
main.page:has(>#details)::after {
|
2024-05-13 02:14:52 +00:00
|
|
|
filter: blur(50px);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-05-13 03:22:58 +00:00
|
|
|
main.page:has(>#details){
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 0.95fr;
|
|
|
|
/* grid-template-rows: 1fr 1fr; */
|
|
|
|
grid-template-areas: "details bio" "details profile-items";
|
|
|
|
column-gap: 1.5rem;
|
2024-05-13 02:14:52 +00:00
|
|
|
}
|
2024-05-13 03:22:58 +00:00
|
|
|
|
|
|
|
#details {
|
|
|
|
grid-area: details;
|
|
|
|
text-align: center;
|
2024-05-13 02:14:52 +00:00
|
|
|
}
|
2024-05-13 03:22:58 +00:00
|
|
|
|
|
|
|
#bio {
|
|
|
|
grid-area: bio;
|
2024-05-13 02:14:52 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2024-05-13 03:22:58 +00:00
|
|
|
#profile-items {
|
|
|
|
grid-area: profile-items;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width:720px) {
|
|
|
|
main.page:has(>#details){
|
|
|
|
display:flex;
|
|
|
|
}
|
|
|
|
#details {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#profile-picture {
|
|
|
|
border-radius: 50%;
|
|
|
|
max-height: 200px;
|
|
|
|
max-width: 200px;
|
|
|
|
box-shadow: 0 0 1em 1px var(--primary-muted), 0 0 .5em 1px var(--white-glow);
|
|
|
|
}
|
|
|
|
|
|
|
|
#profile-items>ul {
|
2024-05-13 02:14:52 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5em;
|
|
|
|
list-style: none;
|
|
|
|
padding:0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 0.5em;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&>i {
|
|
|
|
min-width:20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes glow {
|
|
|
|
0% {
|
|
|
|
background-position: 0 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
background-position: 400% 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
background-position: 0 0;
|
|
|
|
}
|
2024-05-07 00:45:13 +00:00
|
|
|
}
|