You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

58 line
992 B

  1. @import "colors.less";
  2. @font-face
  3. {
  4. font-family: bitty;
  5. src: url('../fonts/bitty.ttf');
  6. }
  7. * {
  8. box-sizing: border-box;
  9. font-family: bitty;
  10. -webkit-touch-callout: none;
  11. -webkit-user-select: none;
  12. -khtml-user-select: none;
  13. -moz-user-select: none;
  14. -ms-user-select: none;
  15. user-select: none;
  16. }
  17. body {
  18. margin: 0px;
  19. width: 100vw;
  20. height: 100vh;
  21. background-image: url(../images/static_bg.png);
  22. background-repeat: repeat;
  23. background-position: center center;
  24. overflow: hidden;
  25. display: flex;
  26. flex-direction: column;
  27. justify-content: center;
  28. align-items: center;
  29. }
  30. .logo {
  31. width: 562px;
  32. height: 200px;
  33. margin-bottom: 20px;
  34. }
  35. .error, .discord {
  36. color: @red;
  37. font-size: 24px;
  38. padding: 10px;
  39. filter:
  40. drop-shadow(0px -6px 0px @blackD)
  41. drop-shadow(0px 6px 0px @blackD)
  42. drop-shadow(6px 0px 0px @blackD)
  43. drop-shadow(-6px 0px 0px @blackD);
  44. }
  45. .discord {
  46. justify-self: end;
  47. a:visited, a:link, a:active, a:hover {
  48. color: @yellowB;
  49. text-decoration: none;
  50. }
  51. }