freedom/static/css/theme.css

815 lines
12 KiB
CSS
Raw Normal View History

2023-01-04 16:59:09 -05:00
body {
2023-06-14 04:34:02 -04:00
--theme-color-primary: black;
--theme-color-secondary: white;
--theme-accent: gold;
2023-07-20 21:48:00 -04:00
font-size: 20px;
line-height: 26px;
2022-08-22 20:03:48 -04:00
width: 100vw;
margin: 0px;
padding: 0px;
overflow-x: hidden;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
color: var(--theme-color-secondary);
background-color: var(--theme-color-primary);
2022-09-09 17:02:10 -04:00
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
2022-08-22 20:03:48 -04:00
}
.background-photo {
position: fixed;
top: 40vh;
max-width: 80vw;
max-height: 70vh;
z-index: -1;
}
2023-01-04 16:59:09 -05:00
header {
margin-top: 5px;
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
2022-09-23 02:40:30 -04:00
header img {
2023-07-14 08:17:37 -04:00
max-height: 6rem;
}
2023-07-20 21:48:00 -04:00
header a {
2023-07-14 08:17:37 -04:00
text-decoration: none;
}
2023-07-20 21:48:00 -04:00
header a:hover {
2023-07-14 08:17:37 -04:00
text-decoration: underline;
2022-09-23 02:40:30 -04:00
}
2022-08-22 20:03:48 -04:00
2023-01-04 16:59:09 -05:00
header,
footer {
2022-08-22 20:03:48 -04:00
text-align: center;
2023-01-04 16:59:09 -05:00
width: 100vw;
2023-07-20 21:48:00 -04:00
font-size: 20px;
2023-03-09 17:25:00 -05:00
line-height: 16px;
2022-08-22 20:03:48 -04:00
}
2023-07-20 21:48:00 -04:00
2023-07-14 08:17:37 -04:00
header h1 {
line-height: 80%;
2023-07-20 21:48:00 -04:00
margin-top: 5px;
2023-07-14 08:17:37 -04:00
}
2023-07-20 21:48:00 -04:00
footer {
2023-07-14 08:17:37 -04:00
flex-direction: row;
2023-07-20 21:48:00 -04:00
display: flex;
2023-07-14 08:17:37 -04:00
justify-content: center;
align-items: center;
}
2023-07-20 21:48:00 -04:00
footer>div {
2023-07-14 08:17:37 -04:00
flex-direction: row;
2023-07-20 21:48:00 -04:00
display: flex;
2023-07-14 08:17:37 -04:00
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
2023-07-20 21:48:00 -04:00
footer>div>div {
display: flex;
2023-07-14 08:17:37 -04:00
flex-direction: column;
align-items: center;
2023-07-20 21:48:00 -04:00
margin: 15px;
2023-07-14 08:17:37 -04:00
}
2023-07-20 21:48:00 -04:00
footer img {
width: 8rem;
2023-07-14 08:17:37 -04:00
}
2023-07-20 21:48:00 -04:00
footer a {
margin: 2px;
2023-07-14 08:17:37 -04:00
}
2023-01-04 16:59:09 -05:00
nav {
border-radius: 30%;
2023-07-20 21:48:00 -04:00
font-size: 12px;
2022-08-22 20:03:48 -04:00
}
2023-07-20 21:48:00 -04:00
2022-08-22 20:03:48 -04:00
a {
2022-11-21 13:39:05 -05:00
color: var(--theme-accent);
2022-08-22 20:03:48 -04:00
}
a:visited {
2022-11-21 13:39:05 -05:00
color: var(--theme-accent);
2022-08-22 20:03:48 -04:00
}
hr {
width: 100%;
2023-01-04 16:59:09 -05:00
margin-top: 15px;
margin-bottom: 15px;
2022-11-21 13:39:05 -05:00
color: var(--theme-accent);
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
main,
aside {
2022-08-22 20:03:48 -04:00
display: flex;
2023-03-23 10:46:27 -04:00
flex-direction: column;
align-items: center;
2023-01-04 16:59:09 -05:00
}
2023-07-20 21:48:00 -04:00
article {
max-width: 90vw;
2022-09-05 19:26:00 -04:00
}
2023-07-20 21:48:00 -04:00
article>* {
max-width: 90vw;
2022-09-09 17:02:10 -04:00
}
2022-08-22 20:03:48 -04:00
2023-01-04 16:59:09 -05:00
#main-content {
min-width: 30vw;
2022-09-09 15:34:02 -04:00
}
2023-01-04 16:59:09 -05:00
2022-08-22 20:03:48 -04:00
.listing {
2023-01-04 16:59:09 -05:00
margin: 15px;
2023-07-20 21:48:00 -04:00
width: 540px;
height: 280px;
2022-08-22 20:03:48 -04:00
display: flex;
flex-direction: row;
align-items: center;
2023-02-19 21:39:29 -05:00
justify-content: center;
2023-07-20 21:48:00 -04:00
background-size: cover;
2023-01-04 16:59:09 -05:00
background-repeat: no-repeat;
background-position-x: center;
background-position-y: bottom;
border-radius: 15px;
text-align: center;
margin-bottom: 25px;
}
.listing-text {
2023-07-20 21:48:00 -04:00
width: 100%;
height: 100%;
2023-01-04 16:59:09 -05:00
border-radius: 15px;
2023-07-20 21:48:00 -04:00
display: flex;
2023-01-04 16:59:09 -05:00
flex-direction: column;
align-items: center;
2023-07-14 08:17:37 -04:00
justify-content: center;
2023-07-20 21:48:00 -04:00
font-size: 14px;
2023-02-19 21:39:29 -05:00
font-weight: bolder;
text-decoration: none !important;
2023-06-14 04:25:40 -04:00
background-color: rgba(0, 0, 0, 0.25);
2022-08-22 20:03:48 -04:00
}
2023-07-20 21:48:00 -04:00
.listing-text h2 {
margin: 0;
2022-09-21 15:54:30 -04:00
}
2023-07-20 21:48:00 -04:00
.listing-text i {
display: block;
max-width: 80%;
2023-07-14 08:17:37 -04:00
}
2023-01-04 16:59:09 -05:00
2023-07-20 21:48:00 -04:00
.listing-text>a {
width: fit-content;
border-bottom-style: none;
2023-06-14 04:34:02 -04:00
background-color: rgba(0, 0, 0, 0.25);
2023-02-19 21:39:29 -05:00
backdrop-filter: blur(55px);
2023-07-20 21:48:00 -04:00
padding: 25px;
border-radius: 25px;
max-width: 80%;
2023-02-19 21:39:29 -05:00
text-align: center;
2023-07-20 21:48:00 -04:00
display: flex;
2023-07-14 08:17:37 -04:00
flex-direction: column;
align-items: center;
justify-content: center;
2023-01-04 16:59:09 -05:00
2023-02-19 21:39:29 -05:00
}
2023-07-20 21:48:00 -04:00
.listing-text:hover>a {
animation: blur-out 0.2s;
2023-02-19 21:39:29 -05:00
background-color: transparent;
backdrop-filter: none;
}
2023-07-20 21:48:00 -04:00
.listing-text:hover {
2023-01-04 16:59:09 -05:00
animation: blur-in 0.2s;
2023-02-19 21:39:29 -05:00
backdrop-filter: blur(15px);
2023-06-14 04:34:02 -04:00
background-color: rgba(0, 0, 0, 0.55);
2023-01-04 16:59:09 -05:00
}
2023-07-20 21:48:00 -04:00
2023-01-04 16:59:09 -05:00
.listing .tags a {
2023-07-20 21:48:00 -04:00
font-size: 12px;
2023-01-04 16:59:09 -05:00
}
2023-07-20 21:48:00 -04:00
2023-01-04 16:59:09 -05:00
.listing .tags {
2022-08-22 20:03:48 -04:00
display: flex;
2022-08-17 14:50:07 -04:00
flex-direction: row;
flex-wrap: wrap;
2023-01-04 16:59:09 -05:00
justify-content: space-evenly;
2022-08-17 14:50:07 -04:00
}
2023-03-23 10:46:27 -04:00
2022-08-17 14:50:07 -04:00
2022-08-22 20:03:48 -04:00
img,
video {
max-width: 95%;
}
audio {
width: 100%;
}
.metadata {
display: flex;
flex-direction: row;
2023-01-04 16:59:09 -05:00
align-items: center;
2023-07-03 13:56:46 -04:00
justify-content: flex-start;
2023-07-20 21:48:00 -04:00
width: 90%;
2023-03-23 10:46:27 -04:00
flex-wrap: wrap;
2023-07-20 21:48:00 -04:00
margin-top: 1rem;
2022-08-22 20:03:48 -04:00
}
2023-07-20 21:48:00 -04:00
.metadata>* {
margin: 5px;
2022-08-17 14:50:07 -04:00
}
2023-07-20 21:48:00 -04:00
.metadata>div>* {
margin: 5px;
2023-07-03 13:56:46 -04:00
}
2023-07-20 21:48:00 -04:00
2023-07-03 13:56:46 -04:00
#tags {
2023-07-20 21:48:00 -04:00
max-width: 30rem;
2022-08-17 14:50:07 -04:00
}
2023-03-23 10:46:27 -04:00
2022-08-22 20:03:48 -04:00
header {
text-align: center;
background-color: transparent;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: space-evenly;
2022-08-17 14:50:07 -04:00
}
2022-08-22 20:03:48 -04:00
nav {
display: flex;
2022-08-17 14:50:07 -04:00
flex-direction: row;
flex-wrap: wrap;
align-items: center;
2022-08-22 20:03:48 -04:00
justify-content: space-evenly;
2022-08-17 14:50:07 -04:00
}
2022-08-22 20:03:48 -04:00
2023-01-04 16:59:09 -05:00
nav>a {
margin: 10px;
2022-08-22 20:03:48 -04:00
}
section {
2023-01-04 16:59:09 -05:00
display: flex;
2022-08-22 20:03:48 -04:00
flex-direction: column;
align-items: center;
}
2023-01-04 16:59:09 -05:00
section div {
display: flex;
2022-09-23 02:40:30 -04:00
flex-direction: column;
align-items: center;
}
2023-01-04 16:59:09 -05:00
2022-08-22 20:03:48 -04:00
article {
margin-top: 1rem;
margin-bottom: 1rem;
2022-10-05 05:59:24 -04:00
padding: 0.5rem;
2022-08-22 20:03:48 -04:00
display: flex;
flex-direction: column;
align-items: center;
2023-01-04 16:59:09 -05:00
font-family: Verdana, Geneva, Tahoma, sans-serif;
2023-07-01 04:53:37 -04:00
width: 70rem;
2023-07-20 21:48:00 -04:00
font-size: 26px;
line-height: 36px;
max-width: 90vw;
}
@media screen and (orientation:portrait) {
article {
font-size: 22px;
line-height: 28px;
}
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
article table {
width: 80%;
2022-11-09 15:44:15 -05:00
}
2023-01-04 16:59:09 -05:00
article .media-container {
display: flex;
2022-11-09 15:44:15 -05:00
flex-direction: column;
align-items: center;
2023-01-04 16:59:09 -05:00
width: 100%;
2022-11-09 15:44:15 -05:00
}
2023-07-20 21:48:00 -04:00
2023-03-06 19:49:09 -05:00
article section {
2023-07-20 21:48:00 -04:00
width: 100%;
2023-03-06 19:49:09 -05:00
}
2023-07-20 21:48:00 -04:00
2023-01-04 16:59:09 -05:00
.media-container a {
width: 100%;
display: flex;
2022-11-09 15:44:15 -05:00
align-items: center;
flex-direction: column;
}
2022-08-22 20:03:48 -04:00
2023-01-04 16:59:09 -05:00
article td,
article th {
width: fit-content;
2022-11-09 15:44:15 -05:00
}
2023-01-04 16:59:09 -05:00
article .footnotes {
width: 100%;
2022-10-08 01:35:51 -04:00
}
2023-01-04 16:59:09 -05:00
article .footnotes a {
2022-11-09 15:44:15 -05:00
text-decoration: none;
}
2023-01-04 16:59:09 -05:00
article sup a {
2022-11-09 15:44:15 -05:00
text-decoration: none;
}
2022-10-08 01:35:51 -04:00
2022-08-22 20:03:48 -04:00
blockquote {
margin-left: 10%;
2022-09-05 19:26:00 -04:00
padding-left: 2.5rem;
2023-01-04 16:59:09 -05:00
width: 80%;
2022-11-21 13:39:05 -05:00
border-left: 0.5rem solid var(--theme-accent);
2022-08-22 20:03:48 -04:00
font-style: italic;
}
section ul,
section ol,
article ol,
article ul {
width: 90%;
}
article>a {
text-align: center;
}
2023-01-04 16:59:09 -05:00
article h2,
2023-03-09 17:25:00 -05:00
article h1 {
2023-01-04 16:59:09 -05:00
width: 100%;
2022-09-05 19:26:00 -04:00
text-align: center;
}
2022-08-22 20:03:48 -04:00
article h3,
section h3,
article h4,
section h4,
article h5,
article p {
width: 100%;
2022-09-17 19:22:55 -04:00
text-align: left;
2023-07-20 21:48:00 -04:00
margin: 15px;
2022-08-22 20:03:48 -04:00
}
article h3 {
text-decoration: underline;
2023-07-20 21:48:00 -04:00
margin: 20px;
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
article img {
2022-09-05 19:26:00 -04:00
align-self: center;
2023-02-19 21:39:29 -05:00
max-width: 95%;
2023-07-20 21:48:00 -04:00
max-height: 60vh
2022-09-05 19:26:00 -04:00
}
2023-01-04 16:59:09 -05:00
2023-07-20 21:48:00 -04:00
article video {
2023-01-04 16:59:09 -05:00
height: 40rem;
width: 95%;
max-height: 60vh;
2022-09-09 15:34:02 -04:00
background-color: transparent;
2022-08-22 20:03:48 -04:00
}
2023-07-20 21:48:00 -04:00
article iframe {
height: auto;
width: 80%;
2023-04-05 15:48:37 -04:00
aspect-ratio: 4/2.5;
}
2022-08-22 20:03:48 -04:00
2023-01-04 16:59:09 -05:00
article>section>a {
display: flex;
2022-08-29 19:54:54 -04:00
flex-direction: column;
align-items: center;
2022-09-09 15:34:02 -04:00
}
2022-08-29 19:54:54 -04:00
2023-01-04 16:59:09 -05:00
table {
width: fit-content;
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
2022-08-22 20:03:48 -04:00
td,
th {
margin: 0;
2022-09-15 17:12:24 -04:00
padding: 0.25rem;
width: min-content;
2022-08-22 20:03:48 -04:00
text-align: left !important;
}
2023-01-04 16:59:09 -05:00
video {
background-color: black;
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
.link-preview {
display: flex;
2022-08-17 14:50:07 -04:00
flex-direction: row;
2022-08-22 20:03:48 -04:00
flex-wrap: nowrap;
2023-01-04 16:59:09 -05:00
padding: 1.5%;
2022-10-05 05:59:24 -04:00
justify-content: left;
2022-08-22 20:03:48 -04:00
text-decoration: none;
text-align: left;
2023-01-04 16:59:09 -05:00
width: 80%;
box-shadow: 0px 0px 0.5rem var(--theme-accent);
border-radius: 2rem;
overflow: hidden;
margin-bottom: 1rem;
margin-top: 1rem;
2022-09-05 19:26:00 -04:00
}
2023-01-04 16:59:09 -05:00
.link-preview>div {
margin: 1rem;
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
.link-preview>img {
2022-10-05 05:59:24 -04:00
max-width: 20rem;
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
.link-preview>div>p {
2022-08-22 20:03:48 -04:00
text-decoration: none !important;
color: var(--theme-color-secondary);
}
#sidebar {
2023-01-04 16:59:09 -05:00
padding-top: 0;
align-items: flex-start;
2023-03-06 19:49:09 -05:00
min-width: 540px;
2022-08-22 20:03:48 -04:00
}
2022-09-05 19:26:00 -04:00
2022-08-22 20:03:48 -04:00
.recent *,
2023-01-04 16:59:09 -05:00
.featured * {
margin: 0.25rem;
padding: 0;
2022-09-05 19:26:00 -04:00
text-align: left;
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
2022-09-09 17:02:10 -04:00
.recent p,
2023-01-04 16:59:09 -05:00
.featured p {
2022-09-09 17:02:10 -04:00
min-width: 20vw;
2023-01-04 16:59:09 -05:00
2022-09-09 17:02:10 -04:00
}
2023-01-04 16:59:09 -05:00
2022-08-22 20:03:48 -04:00
.recent img,
2022-08-29 19:54:54 -04:00
.featured img,
.recent video,
2023-01-04 16:59:09 -05:00
.featured video {
max-width: 15vw;
margin: 0.25rem;
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
#social-links {
2022-08-22 20:03:48 -04:00
display: flex;
flex-direction: row;
2022-08-17 14:50:07 -04:00
flex-wrap: wrap;
2022-09-15 17:12:24 -04:00
align-items: baseline;
justify-content: space-evenly;
2022-08-17 14:50:07 -04:00
}
2022-08-22 20:03:48 -04:00
2023-01-04 16:59:09 -05:00
.social-link {
display: flex;
2022-08-22 20:03:48 -04:00
flex-direction: column;
align-items: center;
2023-01-04 16:59:09 -05:00
margin: 1rem;
2022-08-17 14:50:07 -04:00
}
2023-01-04 16:59:09 -05:00
.social-link img {
width: 2.5rem;
2022-08-22 20:03:48 -04:00
}
@media print {
2023-01-04 16:59:09 -05:00
body {
2022-08-22 20:03:48 -04:00
background-color: white;
}
2023-01-04 16:59:09 -05:00
header,
footer {
display: none;
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
body>img {
display: none;
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
img {
2022-08-22 20:03:48 -04:00
max-height: 60vh;
}
2023-01-04 16:59:09 -05:00
*,
main,
section {
color: black;
2022-08-22 20:03:48 -04:00
background-color: white;
2023-01-04 16:59:09 -05:00
border: none;
2022-08-22 20:03:48 -04:00
box-shadow: none;
2023-01-04 16:59:09 -05:00
padding: 0;
max-width: 90vw;
2022-08-22 20:03:48 -04:00
}
}
2023-01-04 16:59:09 -05:00
.recent,
.featured {
2022-09-05 19:26:00 -04:00
width: 100%;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
2023-01-04 16:59:09 -05:00
padding: 1rem;
2022-09-05 19:26:00 -04:00
}
2023-01-04 16:59:09 -05:00
.featured a,
.recent a {
width: initial;
2022-09-05 19:26:00 -04:00
}
2022-08-22 20:03:48 -04:00
2023-01-04 16:59:09 -05:00
.section-heading {
2022-11-21 13:39:05 -05:00
color: var(--theme-accent);
2022-09-09 17:02:10 -04:00
width: 100%;
}
2022-08-22 20:03:48 -04:00
2023-01-04 16:59:09 -05:00
.gallery {
display: flex;
2022-09-16 16:04:37 -04:00
flex-direction: row;
flex-wrap: wrap;
2022-11-21 13:39:05 -05:00
justify-content: center;
2023-07-20 21:48:00 -04:00
width: 90vw;
2022-09-16 16:04:37 -04:00
}
2023-07-20 21:48:00 -04:00
#banner {
position: relative;
width: 100vw;
padding-top: 3rem;
padding-bottom: 3rem;
max-height: 20vh;
overflow: hidden;
2023-01-04 16:59:09 -05:00
background-repeat: no-repeat;
2023-07-20 21:48:00 -04:00
background-size: cover;
display: flex;
2023-01-04 16:59:09 -05:00
flex-direction: column;
align-items: center;
justify-content: center;
background-position: center;
2023-07-20 21:48:00 -04:00
background-position-y: center;
2023-01-04 16:59:09 -05:00
}
2023-07-20 21:48:00 -04:00
#banner-text {
max-height: 20vh;
width: fit-content;
color: white;
background-color: rgba(0, 0, 0, 0.5);
2023-01-04 16:59:09 -05:00
backdrop-filter: blur(0.25rem);
min-width: 10vw;
2023-07-20 21:48:00 -04:00
border-radius: 25px;
2023-01-04 16:59:09 -05:00
text-shadow: 1px 1px 2px black;
2023-07-20 21:48:00 -04:00
padding: 1.5rem;
font-size: 22px;
2023-02-19 21:39:29 -05:00
}
2023-07-20 21:48:00 -04:00
#banner-text>* {
margin: 5px;
2023-01-04 16:59:09 -05:00
}
2023-03-06 19:49:09 -05:00
.media-container {
2023-01-04 16:59:09 -05:00
margin-bottom: 1rem;
2022-11-21 13:39:05 -05:00
}
2023-01-04 16:59:09 -05:00
2023-03-06 19:49:09 -05:00
.media-container,
.media-container a {
2022-11-21 13:39:05 -05:00
width: fit-content;
display: flex;
flex-direction: column;
justify-content: center;
}
2023-07-20 21:48:00 -04:00
2023-06-16 04:49:07 -04:00
.caption {
width: 100%;
text-align: center;
2022-11-21 13:39:05 -05:00
}
2023-01-04 16:59:09 -05:00
.gallery>* {
2022-11-21 13:39:05 -05:00
margin-bottom: 1.5rem;
2022-09-21 15:54:30 -04:00
}
2023-07-20 21:48:00 -04:00
#content-list {
display: flex;
2023-01-04 16:59:09 -05:00
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
}
2022-09-21 15:54:30 -04:00
2023-01-04 16:59:09 -05:00
@media screen and (orientation:portrait) {
main {
2022-09-21 15:54:30 -04:00
align-items: center;
2023-01-04 16:59:09 -05:00
width: 100vw;
2022-09-21 15:54:30 -04:00
}
2023-01-04 16:59:09 -05:00
.link-preview {
2022-11-09 15:44:15 -05:00
flex-direction: column;
}
2023-01-04 16:59:09 -05:00
.recent,
.featured {
2022-09-21 15:54:30 -04:00
flex-direction: column;
align-items: center;
width: 100%;
}
2023-01-04 16:59:09 -05:00
2022-09-21 15:54:30 -04:00
.listing img,
2023-01-04 16:59:09 -05:00
.listing video {
width: unset;
2022-09-21 15:54:30 -04:00
max-width: 100%;
2023-01-04 16:59:09 -05:00
height: 25vh;
padding-left: 2vw;
padding-right: 2vw;
2022-09-21 15:54:30 -04:00
}
2023-01-04 16:59:09 -05:00
2022-09-21 15:54:30 -04:00
.recent img,
.featured img,
.recent video,
2023-01-04 16:59:09 -05:00
.featured video {
max-width: unset;
width: 100%;
margin: 0;
2022-09-21 15:54:30 -04:00
}
2023-01-04 16:59:09 -05:00
.listing {
2023-07-20 21:48:00 -04:00
max-width: 90vw;
2023-01-04 16:59:09 -05:00
max-height: 40vh;
}
2023-07-20 21:48:00 -04:00
.listing-text {
font-size: 14px;
2023-01-04 16:59:09 -05:00
}
2023-07-20 21:48:00 -04:00
nav {
font-size: 10px;
2023-03-09 17:25:00 -05:00
line-height: 14px;
2023-01-04 16:59:09 -05:00
}
2023-07-20 21:48:00 -04:00
2023-02-19 21:39:29 -05:00
#banner-text {
2023-07-20 21:48:00 -04:00
font-size: 12px;
2023-02-19 21:39:29 -05:00
}
2023-01-04 16:59:09 -05:00
}
2023-07-20 21:48:00 -04:00
svg {
2023-04-02 10:31:40 -04:00
stroke: var(--theme-accent);
2023-07-20 21:48:00 -04:00
fill: var(--theme-accent);
2023-01-04 16:59:09 -05:00
}
2023-07-20 21:48:00 -04:00
2023-01-04 16:59:09 -05:00
.icon {
2023-07-20 21:48:00 -04:00
width: 2rem;
height: 2rem;
2023-01-04 16:59:09 -05:00
}
2023-07-20 21:48:00 -04:00
.icon-small {
height: 1rem;
width: 1rem;
2022-09-21 15:54:30 -04:00
}
2023-07-20 21:48:00 -04:00
.bare-link {
2023-01-04 16:59:09 -05:00
text-decoration: none;
2023-02-19 21:39:29 -05:00
}
2023-07-20 21:48:00 -04:00
@keyframes blur-in {
2023-06-14 04:25:40 -04:00
from {
backdrop-filter: blur(0px);
2023-06-14 04:34:02 -04:00
background-color: rgba(0, 0, 0, 0.25);
2023-02-19 21:39:29 -05:00
}
2023-07-20 21:48:00 -04:00
2023-06-14 04:25:40 -04:00
to {
2023-02-19 21:39:29 -05:00
backdrop-filter: blur(15px);
background-color: rgba(0, 0, 0, 0.55);
}
2023-06-14 04:25:40 -04:00
}
2023-02-19 21:39:29 -05:00
2023-07-20 21:48:00 -04:00
.listing-text,
.listing-text>a {
background-color: rgba(0, 0, 0, 0.25);
2023-06-14 04:25:40 -04:00
}
2023-07-20 21:48:00 -04:00
.listing-text:hover {
2023-06-14 04:25:40 -04:00
animation: blur-in 0.25s;
backdrop-filter: blur(15px);
background-color: rgba(0, 0, 0, 0.55);
}
2023-07-20 21:48:00 -04:00
.listing-text .bare-link,
.listing-text h2 {
2023-06-14 04:25:40 -04:00
text-shadow: rgb(0, 0, 0) 0px 0px 20px;
}
2023-07-20 21:48:00 -04:00
.listing-text:hover>a {
animation: blur-out 0.2s;
2023-06-14 04:25:40 -04:00
background-color: transparent;
}
2023-07-20 21:48:00 -04:00
@keyframes blur-out {
from {
background-color: rgba(0, 0, 0, 0.25);
}
to {
background-color: transparent;
backdrop-filter: blur(0px);
}
}
article a[href^="https"]:where(:not([href*="{{.Site.BaseURL}}"])) {
content: none !important;
2023-03-06 19:49:09 -05:00
}
2023-07-20 21:48:00 -04:00
article a[href^="https"]:where(:not([href*="{{.Site.BaseURL}}"]))::after {
content: "↗️";
font-size: 18px;
margin: 5px;
content: none !important;
}
.media-container a::after,
.liberapay-container a::after,
.tags a::after,
.listing a::after,
#tags a::after,
.image-container a[href^="https"]:where(:not([href*="{{.Site.BaseURL}}"]))::after {
content: "" !important;
margin: 0 !important;
font-size: 0;
2023-03-06 19:49:09 -05:00
}
2023-04-11 12:46:36 -04:00
2023-07-20 21:48:00 -04:00
.media-container a {
2023-03-06 19:49:09 -05:00
flex-direction: row;
}
2023-03-23 10:46:27 -04:00
2023-07-20 21:48:00 -04:00
.pagination {
2023-03-23 10:46:27 -04:00
list-style: none;
2023-07-20 21:48:00 -04:00
display: flex;
2023-03-23 10:46:27 -04:00
flex-direction: row;
flex-wrap: wrap;
2023-07-20 21:48:00 -04:00
width: 100%;
max-width: 90vw;
justify-content: center;
2023-03-23 10:46:27 -04:00
align-items: center;
}
2023-07-20 21:48:00 -04:00
.pagination>* {
margin: 5px;
2023-03-23 10:46:27 -04:00
}
2023-07-20 21:48:00 -04:00
2023-03-23 10:46:27 -04:00
.pagination a {
font-family: Arial, Helvetica, sans-serif;
2023-07-20 21:48:00 -04:00
border: 1px solid var(--theme-accent);
padding: 10px;
font-size: 22px;
2023-03-23 10:46:27 -04:00
font-weight: bolder;
border-radius: 10px;
text-decoration: none;
2023-07-20 21:48:00 -04:00
margin: 0;
2023-03-23 10:46:27 -04:00
}
2023-07-20 21:48:00 -04:00
2023-03-23 10:46:27 -04:00
.pagination .disabled {
2023-07-20 21:48:00 -04:00
display: none;
2023-03-23 10:46:27 -04:00
}
2023-07-20 21:48:00 -04:00
.pagination .active a {
color: var(--theme-color-primary);
2023-03-23 10:46:27 -04:00
background-color: var(--theme-accent);
}
2023-07-20 21:48:00 -04:00
2023-03-23 10:46:27 -04:00
#tags a {
margin: 5px;
border-radius: 3px;
2023-07-20 21:48:00 -04:00
font-size: 16px;
2023-03-23 10:46:27 -04:00
font-weight: bolder;
2023-07-20 21:48:00 -04:00
display: flex;
2023-03-23 10:46:27 -04:00
flex-direction: row;
2023-07-20 21:48:00 -04:00
align-items: center;
border-radius: 25px;
padding: 0px;
2023-03-23 10:46:27 -04:00
}