Bluebottles Blog

16/09/2024

Switched do a default theme (Delightful) as I prefer the more minimal style at the moment. Added some custom css to centre images and make smaller.

25/08/2024

Added now page.

20/08/2024

Made some tweaks to the upvote button css:

/* Update button styling*/
button {
  font-family: var(--font-stack) !important;
  color: var(--color-dark) !important;
}

/* Toast button */
.upvote-button, .upvote-button.upvoted {
  align-items: center;
  display: grid !important;
  grid-template-areas:
        'emoji label'
        'count ...';
  flex-direction: column;
  gap: 0 4px;
}

.upvote-button svg {
  display: none;
}

.upvote-button::before {
  content: '🍏';
  display: block;
  font-size: 32px;
  cursor: pointer;
  grid-area: emoji;
  margin-left: 4px;
}

.upvote-button:hover::before {
  content: '🍏';
  cursor: pointer;
}

.upvote-button.upvoted:hover::before {
  content: '🍏';
  cursor: default;
}

.upvote-button.upvoted::after {
  content: 'Thank you!';
  display: block;
}

.upvote-button:hover::after {
  content: 'Like this post';
  display: block;
}

.upvote-button.upvoted:hover::after {
  content: 'Thank you!';
  cursor: default;
  display: block;
}

.upvote-count {
  font-size: unset;
  grid-area: count; 
  margin-top: 0 !important;
}

19/08/2024

Replaced Letterbird page with a guestbook as I realised the thought of people sending me emails I'd have to respond to was stressful 🙃 (and no one had emailed me anyway)

02/08/2024

Updated dark mode theme colours and added custom toast button (credit goes to A functioning blog).

02/08/2024

Updated css to centre align images 🎉 (that was really annoying me)
Made the font size a little smaller

02/08/2024

Added omg.lol status log and removed current plans from home page
Decided to do blaugust

30/07/2024

Updated the styling to be green - it's brat summer baby.
Added a contact email
Added this change log page!