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.

61 lines
973 B

  1. .container {
  2. width: 700px;
  3. margin: 0 auto;
  4. margin-top: 40px;
  5. @media screen and (max-width: 700px) {
  6. width: 100%;
  7. margin: 0;
  8. }
  9. }
  10. .logo-container {
  11. max-width: 400px;
  12. margin: 100px auto;
  13. margin-bottom: 0;
  14. cursor: default;
  15. @media screen and (max-width: 360px) {
  16. margin: 30px auto;
  17. }
  18. h1 {
  19. display: block;
  20. text-align: center;
  21. color: $primary-text-color;
  22. font-size: 48px;
  23. font-weight: 500;
  24. img {
  25. display: block;
  26. margin: 20px auto;
  27. width: 180px;
  28. height: 180px;
  29. }
  30. a {
  31. color: inherit;
  32. text-decoration: none;
  33. outline: 0;
  34. img {
  35. opacity: 0.8;
  36. transition: opacity 0.8s ease;
  37. }
  38. &:hover {
  39. img {
  40. opacity: 1;
  41. transition-duration: 0.2s;
  42. }
  43. }
  44. }
  45. small {
  46. display: block;
  47. font-size: 12px;
  48. font-weight: 400;
  49. font-family: 'mastodon-font-monospace', monospace;
  50. }
  51. }
  52. }