freedom/static/css/theme.css

761 lines
13 KiB
CSS
Raw Normal View History

2023-01-04 16:59:09 -05:00
body {
2022-09-09 15:34:02 -04:00
--theme-color-primary: white;
2023-03-08 08:05:10 -05:00
--theme-color-secondary: rgb(0, 0, 0);
2023-02-19 21:39:29 -05:00
--theme-accent: #06225a;
2022-09-15 17:12:24 -04:00
}
2023-01-04 16:59:09 -05:00
2022-09-15 17:12:24 -04:00
body {
2023-03-09 17:25:00 -05:00
font-size:22px;
line-height:24px;
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-01-04 16:59:09 -05:00
max-height: 8rem;
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-03-09 17:25:00 -05:00
font-size:14px;
line-height: 16px;
2022-08-22 20:03:48 -04:00
}
2023-01-04 16:59:09 -05:00
nav {
border-radius: 30%;
2023-03-09 17:25:00 -05:00
font-size:12px;
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
}
article{
2022-09-05 19:26:00 -04:00
max-width:90vw;
}
2023-01-04 16:59:09 -05: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-02-19 21:39:29 -05: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-01-04 16:59:09 -05:00
background-size:cover;
background-repeat: no-repeat;
background-position-x: center;
background-position-y: bottom;
border-radius: 15px;
text-align: center;
margin-bottom: 25px;
}
.listing-text {
width:100%;
height:100%;
border-radius: 15px;
display:flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
2023-03-09 17:25:00 -05:00
font-size:14px;
2023-02-19 21:39:29 -05:00
font-weight: bolder;
text-decoration: none !important;
background-color: rgb(255, 255, 255,0.25);
2022-08-22 20:03:48 -04:00
}
2023-02-19 21:39:29 -05:00
.listing-text h2{
margin:0;
2022-09-21 15:54:30 -04:00
}
2023-01-04 16:59:09 -05:00
2023-02-19 21:39:29 -05:00
.listing-text >a{
width:fit-content;
border-bottom-style:none;
background-color: rgba(255,255,255,0.25);
backdrop-filter: blur(55px);
padding:25px;
border-radius:25px;
max-width:80%;
text-align: center;
2023-01-04 16:59:09 -05:00
2023-02-19 21:39:29 -05:00
}
.listing-text:hover >a{
animation:blur-out 0.2s;
background-color: transparent;
backdrop-filter: none;
}
@keyframes blur-out{
from{background-color: rgba(255,255,255,0.25);}
to{background-color: transparent;
backdrop-filter: blur(0px);}
2022-09-21 15:54:30 -04:00
}
2023-01-04 16:59:09 -05:00
@keyframes blur-in{
from {
2023-02-19 21:39:29 -05:00
backdrop-filter: blur(0px);
background-color: rgb(255, 255, 255,0.15);
2023-01-04 16:59:09 -05:00
}
to {
2023-02-19 21:39:29 -05:00
backdrop-filter: blur(15px);
background-color: rgb(255, 255, 255,0.5);
2023-01-04 16:59:09 -05:00
}
2022-09-21 15:54:30 -04:00
}
2023-01-04 16:59:09 -05:00
.listing-text:hover{
animation: blur-in 0.2s;
2023-02-19 21:39:29 -05:00
backdrop-filter: blur(15px);
background-color: rgb(255, 255, 2550,0.5);
2023-01-04 16:59:09 -05:00
}
.listing .tags a {
2023-02-19 21:39:29 -05:00
font-size:12px;
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;
2022-08-22 20:03:48 -04:00
justify-content: center;
2023-03-23 10:46:27 -04:00
width:100%;
flex-wrap: wrap;
2022-08-22 20:03:48 -04:00
}
2023-03-23 10:46:27 -04:00
.metadata>* {
2022-08-22 20:03:48 -04:00
margin: 1rem;
2023-01-04 16:59:09 -05:00
display: flex;
2022-09-05 19:26:00 -04:00
flex-direction: column;
2023-03-23 10:46:27 -04:00
flex-wrap: wrap;
2022-09-05 19:26:00 -04:00
align-items: center;
2022-08-22 20:03:48 -04:00
align-items: center;
2023-03-23 10:46:27 -04:00
min-width: 30%;
max-width:50%;
2022-08-17 14:50:07 -04:00
}
2023-03-23 10:46:27 -04:00
.metadata #tags{
flex-direction: row;
2022-08-17 14:50:07 -04:00
}
2022-08-22 20:03:48 -04:00
2023-01-04 16:59:09 -05: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-04-05 15:48:37 -04:00
width: 60rem;
2023-01-04 16:59:09 -05:00
font-size:25px;
2023-03-09 17:25:00 -05:00
line-height:34px;
2023-04-05 15:48:37 -04:00
max-width:90vw;
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-03-06 19:49:09 -05:00
article section {
width:100%;
}
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-03-24 08:53:28 -04:00
margin:15px;
2022-08-22 20:03:48 -04:00
}
article h3 {
text-decoration: underline;
2023-03-24 08:53:28 -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%;
max-height:60vh
2022-09-05 19:26:00 -04:00
}
2023-01-04 16:59:09 -05:00
2023-04-05 15:48:37 -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-04-05 15:48:37 -04:00
article iframe{
height:auto;
width:80%;
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
#tags {
display: flex;
2022-09-09 17:02:10 -04:00
flex-direction: row;
flex-wrap: wrap;
2023-01-04 16:59:09 -05:00
justify-content: center;
align-items: center;
2022-09-09 17:02:10 -04:00
}
2023-01-04 16:59:09 -05:00
#tags>a {
margin: 5px;
padding:10px;
border-radius: 50px;
2023-03-23 10:46:27 -04:00
font-size:12px;
2023-02-19 21:39:29 -05:00
font-weight: bold;
2023-03-23 10:46:27 -04:00
background-color: var(--theme-color-primary);
color: var(--theme-accent);
2022-09-09 17:02:10 -04:00
font-weight: bolder;
2023-01-04 16:59:09 -05:00
display:flex;
flex-direction: row;
align-items: center;
}
#tags>a>*{
margin:5px;
2022-09-16 16:04:37 -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-01-04 16:59:09 -05:00
width:90vw;
2022-09-16 16:04:37 -04:00
}
2023-01-04 16:59:09 -05:00
#banner{
position:relative;
width:100vw;
2023-02-19 21:39:29 -05:00
padding-top:3rem;
padding-bottom:3rem;
max-height:20vh;
2023-01-04 16:59:09 -05:00
overflow:hidden;
background-repeat: no-repeat;
background-size:cover;
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-position: center;
background-position-y:center;
}
#banner-text{
max-height:20vh;
width:fit-content;
color:white;
background-color: rgba(0,0,0,0.5);
backdrop-filter: blur(0.25rem);
min-width: 10vw;
border-radius:25px;
text-shadow: 1px 1px 2px black;
2023-02-19 21:39:29 -05:00
padding:1.5rem;
font-size:22px;
}
#banner-text>*{
2023-03-21 05:06:20 -04:00
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-01-04 16:59:09 -05:00
2023-03-06 19:49:09 -05:00
.media-container .caption {
2022-11-21 13:39:05 -05:00
width: fit-content;
}
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-01-04 16:59:09 -05:00
#content-list{
display:flex;
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 {
max-width:90vw;
max-height: 40vh;
}
.listing-text{
font-size:14px;
}
nav{
font-size:10px;
2023-03-09 17:25:00 -05:00
line-height: 14px;
2023-01-04 16:59:09 -05:00
}
2023-02-19 21:39:29 -05:00
#banner-text {
font-size:12px;
}
2023-01-04 16:59:09 -05:00
}
svg{
2023-04-02 10:31:40 -04:00
stroke: var(--theme-accent);
fill:var(--theme-accent);
2023-01-04 16:59:09 -05:00
}
.icon {
2023-04-02 10:31:40 -04:00
width:2rem;
height:2rem;
2023-01-04 16:59:09 -05:00
}
.icon-small{
height:1rem;
width:1rem;
2022-09-21 15:54:30 -04:00
}
2023-01-04 16:59:09 -05:00
.bare-link{
text-decoration: none;
2023-02-19 21:39:29 -05:00
}
@media screen and (prefers-color-scheme:dark) {
body {
--theme-color-primary: black;
--theme-color-secondary: white;
--theme-accent: gold;
}
@keyframes blur-in{
from {
backdrop-filter: blur(0px);
background-color: unset;
}
to {
backdrop-filter: blur(15px);
background-color: rgba(0, 0, 0, 0.55);
}
}
.listing-text,.listing-text>a {
background-color: rgba(0, 0, 0, 0.25);
}
.listing-text:hover{
animation: blur-in 0.25s;
backdrop-filter: blur(15px);
background-color: rgba(0, 0, 0, 0.55);
}
.listing-text .bare-link,.listing-text h2{
text-shadow: rgb(0, 0, 0) 0px 0px 20px;
}
.listing-text:hover >a{
animation:blur-out 0.2s;
background-color: transparent;
}
@keyframes blur-out{
from{background-color: rgba(0, 0, 0, 0.25);}
to{background-color: transparent;backdrop-filter: blur(0px);}
}
2023-03-06 19:49:09 -05:00
}
article a[href^="https"]:where(:not([href*="{{.Site.BaseURL}}"])) {text-decoration: none !important;}
article a[href^="https"]:where(:not([href*="{{.Site.BaseURL}}"]))::after {content:"↗️";font-size:18px;margin:5px;text-decoration: none !important;}
2023-06-09 12:31:22 -04:00
.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{
2023-03-06 19:49:09 -05:00
content: "" !important;margin:0 !important;font-size:0;
}
2023-04-11 12:46:36 -04:00
2023-03-06 19:49:09 -05:00
.media-container a{
flex-direction: row;
}
2023-03-23 10:46:27 -04:00
.pagination{
list-style: none;
display:flex;
flex-direction: row;
flex-wrap: wrap;
width:100%;
max-width:90vw;
justify-content:center;
align-items: center;
}
.pagination>*{
margin:5px;
}
.pagination a {
font-family: Arial, Helvetica, sans-serif;
border:1px solid var(--theme-accent);
padding:10px;
font-size:22px;
font-weight: bolder;
border-radius: 10px;
text-decoration: none;
margin:0;
}
.pagination .disabled {
display:none;
}
.pagination .active a{
color:var(--theme-color-primary);
background-color: var(--theme-accent);
}
#tags a {
margin: 5px;
padding:2px;
border-radius: 3px;
font-size:16px;
font-weight: bolder;
display:flex;
flex-direction: row;
border:2px solid var(--theme-accent);
align-items: center;
background-color: var(--theme-accent);
color: var(--theme-color-primary);
border-radius:25px;
padding:5px;
}