/* todo:
- add accessible visibility for links !important
- fallback for css variables
- autoprefixer
- minifier (remove ; and such) */


/* Replace Navlinks
  -------------------------------------------------------------*/
li#navawards,
#pun-navlinks li span {
  display: none;
}

#navindex a:before {
  content: "untitled_cross";
}

#navuserlist a:before {
  content: "Characters";
}

#navsearch a:before {
  content: "Search";
}

#navprofile a:before {
  content: "Profile";
}

#navpm a:before {
  content: "Messages";
}

#navadmin a:before {
  content: "Settings";
}

#navlogout a:before {
  content: "Logout";
}

#navlogin a:before {
  content: "Login";
}

#navregister a:before {
  content: "Join";
}

/* Keyframes PM Animation
  -------------------------------------------------------------*/
@-webkit-keyframes newmessages {
  0%,
  100% {
    background-color: transparent;
    color: #aa1a4f;
  }
  50% {
    color: #dce0d2;
    background-color: #aa1a4f;
  }
}

@-moz-keyframes newmessages {
  0%,
  100% {
    background-color: transparent;
    color: #aa1a4f;
  }
  50% {
    color: #dce0d2;
    background-color: #aa1a4f;
  }
}

@-o-keyframes newmessages {
  0%,
  100% {
    background-color: transparent;
    color: #aa1a4f;
  }
  50% {
    color: #dce0d2;
    background-color: #aa1a4f;
  }
}

@keyframes newmessages {
  0%,
  100% {
    background-color: transparent;
    color: #aa1a4f;
  }
  50% {
    color: #dce0d2;
    background-color: #aa1a4f;
  }
}