Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

62 lignes
987 B

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