website/public/app.css

97 lines
1.6 KiB
CSS
Raw Normal View History

2024-03-27 01:51:42 +01:00
p {
2024-03-28 18:30:52 +01:00
font-size: 16px;
2024-03-27 01:51:42 +01:00
}
2024-03-28 18:30:52 +01:00
h1,
2024-04-03 14:27:48 +02:00
h2,
h3 {
color: var(--text-light);
2024-03-28 18:30:52 +01:00
font-family: 'Roboto', sans-serif;
2024-03-27 01:51:42 +01:00
}
2024-04-03 16:18:30 +02:00
article>h2 {
2024-04-03 14:27:48 +02:00
font-size: 24px;
margin-top: 20px;
}
2024-04-03 16:18:30 +02:00
article>h3 {
2024-04-03 14:27:48 +02:00
font-size: 20px;
margin-top: 16px;
}
2024-04-03 16:18:30 +02:00
article>p>a,
2024-04-06 18:23:39 +02:00
article a,
.top-info>.links a {
2024-04-03 16:18:30 +02:00
color: var(--fill) !important;
}
2024-04-03 14:27:48 +02:00
.dark .noise::before {
opacity: 1;
2024-03-26 16:36:18 +01:00
}
2024-03-27 01:51:42 +01:00
2024-03-28 18:30:52 +01:00
.noise::before {
2024-04-03 14:27:48 +02:00
opacity: 0.3;
2024-03-28 18:30:52 +01:00
content: "";
position: absolute;
height: 100%;
width: 100%;
2024-04-03 19:38:02 +02:00
background: url(/images/noise.webp);
2024-03-28 18:30:52 +01:00
background-size: 200px;
pointer-events: none;
/* opacity: 0.3; */
}
2024-03-27 01:51:42 +01:00
img {
max-width: 100%;
height: auto;
}
2024-04-03 14:27:48 +02:00
video {
border-radius: 10px;
}
2024-03-27 01:51:42 +01:00
.center {
display: flex;
justify-content: center;
align-items: center;
}
2024-04-03 21:09:50 +02:00
.astro-code {
padding: 20px;
border-radius: 10px;
}
article iframe {
border-radius: 10px;
}
2024-04-06 22:38:56 +02:00
picture.thumb::before {
content: "";
position: absolute;
bottom: 10px;
right: 10px;
width: 20px;
height: 20px;
2024-04-06 22:38:56 +02:00
opacity: 0;
transition: opacity 0.3s;
pointer-events: none;
animation: spin 1s linear infinite;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-loader-2'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 3a9 9 0 1 0 9 9' /%3E%3C/svg%3E");
background-size: cover;
z-index: 2;
}
picture.thumb-loading::before {
opacity: 0.5;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}