/* no underline on any link ever */
a {
    text-decoration: none;
}

/* no link currently active should be color --hover */
a:active, a.active {
    color: var(--link)
}
a:hover {
    color: var(--hover)
}

/* add emojis to tags here */
#tag_linux:after { content: "🐧" }
#tag_cooking:after { content: "🍳" }
#tag_keyboard:after { content: "⌨️" }
#tag_android:after { content: "🤖" }
#tag_audio:after { content: "🎵" }
#tag_repair:after { content: "🔧" }

/* flash the $ sign in logo */
.page__logo-inner::after {
  animation: flash 1s linear infinite;
  /* keep spaces in animation since monotyped font */
  white-space: pre-wrap;
}

@keyframes flash {
  0%, 49.9% { content: "]  "; }
  50.1%, 100% { content: "] $"; }
}

