style changes

This commit is contained in:
0x01fe 2024-03-26 15:59:35 -05:00
parent 71ba070252
commit 006279b537
2 changed files with 12 additions and 6 deletions

4
.gitignore vendored
View File

@ -5,3 +5,7 @@ __pycache__
docker-compose.yaml docker-compose.yaml
*.sh *.sh
# Ignore images in posts
*.jpg
*.png

View File

@ -70,7 +70,7 @@ a:hover {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
margin: 0px 10%; margin: 0px 5%;
border-style: var(--borders-style); border-style: var(--borders-style);
border-color: #1E2022; border-color: #1E2022;
@ -96,7 +96,7 @@ a:hover {
opacity: 0.9; opacity: 0.9;
box-shadow: -10px 10px var(--accent); /* box-shadow: -10px 10px var(--accent); */
/* Text Settings */ /* Text Settings */
font-weight: bold; font-weight: bold;
@ -131,7 +131,7 @@ a:hover {
margin: 1em 2em; margin: 1em 2em;
background-color: var(--main-background); background-color: var(--main-background);
box-shadow: 10px 10px var(--accent); /* box-shadow: 10px 10px var(--accent); */
} }
.post img { .post img {
@ -150,9 +150,10 @@ a:hover {
background-color: var(--background); background-color: var(--background);
} }
.post h2 { .post h1 {
font-family: Georgia, 'Times New Roman', Times, serif; font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: 100; font-weight: 100;
font-size: 26px;
text-decoration: underline; text-decoration: underline;
text-decoration-style: solid; text-decoration-style: solid;
@ -161,7 +162,8 @@ a:hover {
text-decoration-color: var(--primary); text-decoration-color: var(--primary);
} }
.post h3 { .post h2 {
font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: 300; font-weight: 300;
font-size: 18px; font-size: 18px;
} }